summaryrefslogtreecommitdiff
path: root/packages/gaim/files/04-saved-status-dialogs.patch
diff options
context:
space:
mode:
authorRolf Leggewie <oe-devel@rolf.leggewie.biz>2008-02-20 00:34:07 +0000
committerRolf Leggewie <oe-devel@rolf.leggewie.biz>2008-02-20 00:34:07 +0000
commitc9e8762b3c2c940689bee98c2f78af69b47407e2 (patch)
tree9d7aac6435d99613b91400f646b50e963c580980 /packages/gaim/files/04-saved-status-dialogs.patch
parenta749e1f719d9e5d992865b3f421e5da139053c56 (diff)
gaim: moved gaim to packages/obsolete and pidgin to its own directory. Fixes 2374.
Diffstat (limited to 'packages/gaim/files/04-saved-status-dialogs.patch')
-rw-r--r--packages/gaim/files/04-saved-status-dialogs.patch40
1 files changed, 0 insertions, 40 deletions
diff --git a/packages/gaim/files/04-saved-status-dialogs.patch b/packages/gaim/files/04-saved-status-dialogs.patch
deleted file mode 100644
index 2cdf70c5c1..0000000000
--- a/packages/gaim/files/04-saved-status-dialogs.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-Identiske underkataloger: src2/CVS og src/CVS
-Identiske underkataloger: src2/.deps og src/.deps
-Index: gaim/src/gtksavedstatuses.c
-===================================================================
---- gaim.orig/src/gtksavedstatuses.c 2005-08-13 07:54:33.000000000 +0200
-+++ gaim/src/gtksavedstatuses.c 2005-08-19 21:20:41.806812608 +0200
-@@ -417,6 +417,7 @@
- bbox = gtk_hbutton_box_new();
- gtk_box_set_spacing(GTK_BOX(bbox), GAIM_HIG_BOX_SPACE);
- gtk_button_box_set_layout(GTK_BUTTON_BOX(bbox), GTK_BUTTONBOX_END);
-+ gtk_button_box_set_child_size(GTK_BUTTON_BOX(bbox), 20, -1); //DEPRECATED FFH
- gtk_box_pack_end(GTK_BOX(vbox), bbox, FALSE, TRUE, 0);
- gtk_widget_show(bbox);
-
-@@ -449,12 +450,13 @@
- G_CALLBACK(status_window_delete_cb), dialog);
-
- /* Close button */
-- button = gtk_button_new_from_stock(GTK_STOCK_CLOSE);
-+ //We can do without the close button to save screen estate
-+ /*button = gtk_button_new_from_stock(GTK_STOCK_CLOSE);
- gtk_box_pack_start(GTK_BOX(bbox), button, FALSE, FALSE, 0);
- gtk_widget_show(button);
-
- g_signal_connect(G_OBJECT(button), "clicked",
-- G_CALLBACK(status_window_close_cb), dialog);
-+ G_CALLBACK(status_window_close_cb), dialog);*/
-
- gtk_widget_show(win);
- }
-@@ -790,7 +792,8 @@
- disclosure = gaim_disclosure_new(_("Use a different status for some accounts"),
- _("Use a different status for some accounts"));
- gtk_box_pack_start(GTK_BOX(vbox), disclosure, FALSE, FALSE, 0);
-- gtk_widget_show(disclosure);
-+ //For now, do without the custom messages - not implemented yet
-+ //gtk_widget_show(disclosure);
-
- /* Setup the box that the disclosure will cover */
- dbox = gtk_vbox_new(FALSE, GAIM_HIG_CAT_SPACE);