]> pilppa.org Git - familiar-h63xx-build.git/blob - org.handhelds.familiar/packages/gaim/files/04-saved-status-dialogs.patch
OE tree imported from monotone branch org.openembedded.oz354fam083 at revision 8b12e3...
[familiar-h63xx-build.git] / org.handhelds.familiar / packages / gaim / files / 04-saved-status-dialogs.patch
1 Identiske underkataloger: src2/CVS og src/CVS
2 Identiske underkataloger: src2/.deps og src/.deps
3 Index: gaim/src/gtksavedstatuses.c
4 ===================================================================
5 --- gaim.orig/src/gtksavedstatuses.c    2005-08-13 07:54:33.000000000 +0200
6 +++ gaim/src/gtksavedstatuses.c 2005-08-19 21:20:41.806812608 +0200
7 @@ -417,6 +417,7 @@
8         bbox = gtk_hbutton_box_new();
9         gtk_box_set_spacing(GTK_BOX(bbox), GAIM_HIG_BOX_SPACE);
10         gtk_button_box_set_layout(GTK_BUTTON_BOX(bbox), GTK_BUTTONBOX_END);
11 +       gtk_button_box_set_child_size(GTK_BUTTON_BOX(bbox), 20, -1); //DEPRECATED FFH
12         gtk_box_pack_end(GTK_BOX(vbox), bbox, FALSE, TRUE, 0);
13         gtk_widget_show(bbox);
14  
15 @@ -449,12 +450,13 @@
16                                          G_CALLBACK(status_window_delete_cb), dialog);
17  
18         /* Close button */
19 -       button = gtk_button_new_from_stock(GTK_STOCK_CLOSE);
20 +       //We can do without the close button to save screen estate
21 +       /*button = gtk_button_new_from_stock(GTK_STOCK_CLOSE);
22         gtk_box_pack_start(GTK_BOX(bbox), button, FALSE, FALSE, 0);
23         gtk_widget_show(button);
24  
25         g_signal_connect(G_OBJECT(button), "clicked",
26 -                                        G_CALLBACK(status_window_close_cb), dialog);
27 +                                        G_CALLBACK(status_window_close_cb), dialog);*/
28  
29         gtk_widget_show(win);
30  }
31 @@ -790,7 +792,8 @@
32         disclosure = gaim_disclosure_new(_("Use a different status for some accounts"),
33                                                                          _("Use a different status for some accounts"));
34         gtk_box_pack_start(GTK_BOX(vbox), disclosure, FALSE, FALSE, 0);
35 -       gtk_widget_show(disclosure);
36 +       //For now, do without the custom messages - not implemented yet
37 +       //gtk_widget_show(disclosure);
38  
39         /* Setup the box that the disclosure will cover */
40         dbox = gtk_vbox_new(FALSE, GAIM_HIG_CAT_SPACE);