aboutsummaryrefslogtreecommitdiff
path: root/multimedia
diff options
context:
space:
mode:
authorKirill Ponomarev <krion@FreeBSD.org>2004-08-23 19:07:28 +0000
committerKirill Ponomarev <krion@FreeBSD.org>2004-08-23 19:07:28 +0000
commit584c48f7a19ec691f80cfd3f6d555540873fb8e9 (patch)
tree2f223140969f32d0f7cfab36367108b85a738f57 /multimedia
parent4a74e581dfb62250e95dc296ea8a35ab4a849a24 (diff)
downloadports-584c48f7a19ec691f80cfd3f6d555540873fb8e9.tar.gz
ports-584c48f7a19ec691f80cfd3f6d555540873fb8e9.zip
Notes
Diffstat (limited to 'multimedia')
-rw-r--r--multimedia/xtheater/files/patch-plugins::ui::gtk::uiopt.c67
1 files changed, 67 insertions, 0 deletions
diff --git a/multimedia/xtheater/files/patch-plugins::ui::gtk::uiopt.c b/multimedia/xtheater/files/patch-plugins::ui::gtk::uiopt.c
new file mode 100644
index 000000000000..52c9799240c8
--- /dev/null
+++ b/multimedia/xtheater/files/patch-plugins::ui::gtk::uiopt.c
@@ -0,0 +1,67 @@
+--- plugins/ui/gtk/uiopt.c.orig Sat Jun 2 07:06:34 2001
++++ plugins/ui/gtk/uiopt.c Sun Aug 22 22:10:22 2004
+@@ -40,8 +40,8 @@
+ void apply_savesettings (GtkWidget * b, gpointer ig);
+
+ /* Data */
+-static GtkWidget *labs[64];
+-static GtkWidget *sets[64];
++static GtkWidget *my_labs[64];
++static GtkWidget *my_sets[64];
+ static char type[64];
+ static char plug_opts[64][80];
+ static int num_settings;
+@@ -83,26 +83,26 @@
+ type[i] = 's';
+ tmp = opts[i] + 7;
+ while (*(tmp++) != '\t');
+- sets[i] = gtk_entry_new ();
+- labs[i] = gtk_label_new (tmp);
++ my_sets[i] = gtk_entry_new ();
++ my_labs[i] = gtk_label_new (tmp);
+ strncpy (plug_opts[i], opts[i] + 7, tmp - opts[i] - 8);
+- gtk_box_pack_start (GTK_BOX (horbox[i]), sets[i], 0, 0, 0);
+- gtk_box_pack_start (GTK_BOX (horbox[i]), labs[i], 0, 0, 0);
++ gtk_box_pack_start (GTK_BOX (horbox[i]), my_sets[i], 0, 0, 0);
++ gtk_box_pack_start (GTK_BOX (horbox[i]), my_labs[i], 0, 0, 0);
+ if (loader_get_setting (plug_opts[i]))
+- gtk_entry_set_text (GTK_ENTRY (sets[i]),
++ gtk_entry_set_text (GTK_ENTRY (my_sets[i]),
+ loader_get_setting (plug_opts[i]));
+ }
+ if (!strncmp (opts[i], "bool", 4)) {
+ type[i] = 'b';
+ tmp = opts[i] + 5;
+ while (*(tmp++) != '\t');
+- sets[i] = gtk_check_button_new ();
+- labs[i] = gtk_label_new (tmp);
++ my_sets[i] = gtk_check_button_new ();
++ my_labs[i] = gtk_label_new (tmp);
+ strncpy (plug_opts[i], opts[i] + 5, tmp - opts[i] - 6);
+- gtk_box_pack_start (GTK_BOX (horbox[i]), sets[i], 0, 0, 0);
+- gtk_box_pack_start (GTK_BOX (horbox[i]), labs[i], 0, 0, 0);
++ gtk_box_pack_start (GTK_BOX (horbox[i]), my_sets[i], 0, 0, 0);
++ gtk_box_pack_start (GTK_BOX (horbox[i]), my_labs[i], 0, 0, 0);
+ if (loader_get_setting (plug_opts[i]))
+- gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (sets[i]),
++ gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (my_sets[i]),
+ !strcmp (loader_get_setting
+ (plug_opts[i]), "true"));
+
+@@ -146,14 +146,14 @@
+ for (i = 0; i < num_settings; i++) {
+ switch (type[i]) {
+ case 'b':
+- if (GTK_TOGGLE_BUTTON (sets[i])->active)
++ if (GTK_TOGGLE_BUTTON (my_sets[i])->active)
+ loader_set_setting (plug_opts[i], "true");
+ else
+ loader_set_setting (plug_opts[i], "false");
+ break;
+ case 's':
+ loader_set_setting (plug_opts[i],
+- gtk_entry_get_text (GTK_ENTRY (sets[i])));
++ gtk_entry_get_text (GTK_ENTRY (my_sets[i])));
+ break;
+ }
+ }