1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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);
|