diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2009-10-29 01:38:43 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2009-10-29 01:38:43 (GMT) |
commit | 3b1b7cd7a3b7b36d2937e13437519e951668a995 (patch) | |
tree | fda56d25b729287f603d32dc51493ea3bb0bffea /src/analysis | |
parent | 8ae0409cfc70aa399bc0083a1ce6bdb27cc2ce23 (diff) |
Fixed bugs and made the binary loading process faster.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@134 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/analysis')
-rw-r--r-- | src/analysis/exporter.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/analysis/exporter.c b/src/analysis/exporter.c index 54673d3..e78fd54 100644 --- a/src/analysis/exporter.c +++ b/src/analysis/exporter.c @@ -199,8 +199,6 @@ void g_content_exporter_insert_with_gtk_tag(GContentExporter *exporter, GtkTextB { size_t init; /* Point d'insertion initial */ - init = gtk_text_iter_get_offset(iter); - if (tag != RTT_NONE) gtk_text_buffer_insert_with_tags(buffer, iter, text, length, G_CONTENT_EXPORTER_GET_CLASS(exporter)->tags[tag], @@ -208,8 +206,6 @@ void g_content_exporter_insert_with_gtk_tag(GContentExporter *exporter, GtkTextB else gtk_text_buffer_insert_with_tags(buffer, iter, text, length, NULL); - gtk_text_iter_set_offset(iter, init + length); - } |