diff options
Diffstat (limited to 'src/analysis/db')
-rw-r--r-- | src/analysis/db/items/comment.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/analysis/db/items/comment.c b/src/analysis/db/items/comment.c index 6c1f6d9..a4a62b0 100644 --- a/src/analysis/db/items/comment.c +++ b/src/analysis/db/items/comment.c @@ -137,7 +137,7 @@ static size_t g_db_comment_count_lines(const GDbComment *); static void g_db_comment_compute_cursor(const GDbComment *, gint, size_t, size_t, GLineCursor **); /* Détermine si le conteneur s'inscrit dans une plage donnée. */ -static int g_db_comment_contains_cursor(const GDbComment *, size_t, size_t, const GLineCursor *); +static int g_db_comment_contain_cursor(const GDbComment *, size_t, size_t, const GLineCursor *); /* Renseigne sur les propriétés liées à un générateur. */ static BufferLineFlags g_db_comment_get_flags(const GDbComment *, size_t, size_t); @@ -272,7 +272,7 @@ static void g_db_comment_interface_init(GLineGeneratorInterface *iface) { iface->count = (linegen_count_lines_fc)g_db_comment_count_lines; iface->compute = (linegen_compute_fc)g_db_comment_compute_cursor; - iface->contains = (linegen_contains_fc)g_db_comment_contains_cursor; + iface->contain = (linegen_contain_fc)g_db_comment_contain_cursor; iface->get_flags = (linegen_get_flags_fc)g_db_comment_get_flags; iface->print = (linegen_print_fc)g_db_comment_print; @@ -1382,7 +1382,7 @@ static void g_db_comment_compute_cursor(const GDbComment *comment, gint x, size_ * * ******************************************************************************/ -static int g_db_comment_contains_cursor(const GDbComment *comment, size_t index, size_t repeat, const GLineCursor *cursor) +static int g_db_comment_contain_cursor(const GDbComment *comment, size_t index, size_t repeat, const GLineCursor *cursor) { int result; /* Conclusion à retourner */ vmpa2t addr; /* Autre emplacement à comparer*/ |