]> granicus.if.org Git - graphviz/commitdiff
smyrna: remove unused 'get_gtktextview_text'
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 17 Nov 2021 04:53:08 +0000 (20:53 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 21 Nov 2021 00:09:10 +0000 (16:09 -0800)
cmd/smyrna/gui/gui.c

index 751a14b80a5fdade6459d30ce8ba0ef50628097a..3a23e0415e0d4896f81bc133e9688e92e4a4354b 100644 (file)
@@ -193,26 +193,6 @@ int savefiledlg(int filtercnt, char **filters, agxbuf * xbuf)
     return rv;
 }
 
-/*
-       this function is designed to return a GtkTextView object's text in agxbuf
-       send an initialized agxbuf and a GtkTextView object
-       null termination is taken care by agxbuf
-*/
-void get_gtktextview_text(GtkTextView * w, agxbuf * xbuf)
-{
-    int charcnt;
-    GtkTextBuffer *gtkbuf;
-    GtkTextIter startit;
-    GtkTextIter endit;
-    gtkbuf = gtk_text_view_get_buffer(w);
-    charcnt = gtk_text_buffer_get_char_count(gtkbuf);
-    gtk_text_buffer_get_start_iter(gtkbuf, &startit);
-    gtk_text_buffer_get_end_iter(gtkbuf, &endit);
-
-    agxbput(xbuf, gtk_text_buffer_get_text(gtkbuf, &startit, &endit, 0));
-}
-
-
 void append_textview(GtkTextView * textv, const char *s, size_t bytes)
 {