summaryrefslogtreecommitdiff
path: root/packages/gaim/files/04-saved-status-dialogs.patch
diff options
context:
space:
mode:
authorFlorian Boor <florian.boor@kernelconcepts.de>2005-08-30 14:29:02 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2005-08-30 14:29:02 +0000
commit782823d984fe94d55820e63b2d9a5fc5e9948450 (patch)
treea5db793a872a155750ba6a5079c6e10238a8a3f1 /packages/gaim/files/04-saved-status-dialogs.patch
parent5e0f1e770e5721d45d9d3ceca49aee1901e5462c (diff)
parent8d442f4201aad8dcc782a9b53ec4a9c419c7e86f (diff)
merge of 0b1e74a13c861c0c4516ac25f7350e65026ba690
and 57a2e56ac43af2e1db16eba23cf9c7f23f261bb3
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, 40 insertions, 0 deletions
diff --git a/packages/gaim/files/04-saved-status-dialogs.patch b/packages/gaim/files/04-saved-status-dialogs.patch
new file mode 100644
index 0000000000..2cdf70c5c1
--- /dev/null
+++ b/packages/gaim/files/04-saved-status-dialogs.patch
@@ -0,0 +1,40 @@
+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);