summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'gnome-extra/gcursor/files/gcursor-0.061-signal.patch')
-rw-r--r--gnome-extra/gcursor/files/gcursor-0.061-signal.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/gnome-extra/gcursor/files/gcursor-0.061-signal.patch b/gnome-extra/gcursor/files/gcursor-0.061-signal.patch
deleted file mode 100644
index c61894e4db09..000000000000
--- a/gnome-extra/gcursor/files/gcursor-0.061-signal.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-http://bugs.gentoo.org/216804
-
---- src/gcursor.c
-+++ src/gcursor.c
-@@ -16,6 +16,9 @@
- #include <gconf/gconf-client.h>
- #include <glade/glade.h>
-
-+#define CONNECT_SIGNAL(name) glade_xml_signal_connect(main_window, #name, \
-+ G_CALLBACK(name))
-+
- void reload_tree(GtkWidget *tree, GtkListStore *store);
- void size_changed();
- GladeXML *main_window = NULL;
-@@ -429,6 +432,10 @@
- client = gconf_client_get_default();
-
- main_window = glade_xml_new(GLADE_PATH"/gcursor.glade", "select_dialog", NULL);
-+ CONNECT_SIGNAL(extract_theme);
-+ CONNECT_SIGNAL(open_theme_dir);
-+ CONNECT_SIGNAL(entry_selected);
-+ CONNECT_SIGNAL(size_changed);
- store = gtk_list_store_new(2, GDK_TYPE_PIXBUF, GTK_TYPE_STRING);
- tree = glade_xml_get_widget(main_window, "cursor_tree");
- gtk_tree_view_set_model(GTK_TREE_VIEW(tree), GTK_TREE_MODEL(store));