summaryrefslogtreecommitdiff
path: root/src/analysis/exporter.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/analysis/exporter.c')
-rw-r--r--src/analysis/exporter.c4
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);
-
}