]> granicus.if.org Git - graphviz/commitdiff
GTK plugin: remove unused 'add_pixmap_directory'
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 2 Apr 2022 19:33:30 +0000 (12:33 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Tue, 5 Apr 2022 01:41:06 +0000 (18:41 -0700)
plugin/gtk/support.c
plugin/gtk/support.h

index b4e2f12867dc207e487a76cac19db14e02d5bfd9..0c8ba6e1426a023f9dbad0eaa636acdf0700a0db 100644 (file)
@@ -39,13 +39,3 @@ lookup_widget                          (GtkWidget       *widget,
     g_warning ("Widget not found: %s", widget_name);
   return found_widget;
 }
-
-static GList *pixmaps_directories = NULL;
-
-/* Use this function to set the directory containing installed pixmaps. */
-void
-add_pixmap_directory                   (const gchar     *directory)
-{
-  pixmaps_directories = g_list_prepend (pixmaps_directories,
-                                        g_strdup (directory));
-}
index 2029476d908b5fe56dfa0094b67fa95b76a37a8a..dd8e843a2b1c7f8fa5871af1349b8d82362b41d6 100644 (file)
@@ -43,7 +43,3 @@
  */
 GtkWidget*  lookup_widget              (GtkWidget       *widget,
                                         const gchar     *widget_name);
-
-
-/* Use this function to set the directory containing installed pixmaps. */
-void        add_pixmap_directory       (const gchar     *directory);