diff options
| author | Jan Djärv | 2011-09-07 19:25:24 +0200 |
|---|---|---|
| committer | Jan Djärv | 2011-09-07 19:25:24 +0200 |
| commit | 115b96bdb5e17c69bafabc82f43cfbfe3eecc115 (patch) | |
| tree | 99ebb552eea1a81ddf01eae0f4c38eba3d1214e0 /src | |
| parent | 4feb6e7359c345a00e1c8020be444fc6c2e22f1a (diff) | |
| download | emacs-115b96bdb5e17c69bafabc82f43cfbfe3eecc115.tar.gz emacs-115b96bdb5e17c69bafabc82f43cfbfe3eecc115.zip | |
(xg_make_tool_item): Insert comment about eventbox.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/gtkutil.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index f1691252778..293107f6ffb 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2011-09-07 Jan Djärv <jan.h.d@swipnet.se> | ||
| 2 | |||
| 3 | * gtkutil.c (xg_make_tool_item): Insert comment about eventbox. | ||
| 4 | |||
| 1 | 2011-09-06 Paul Eggert <eggert@cs.ucla.edu> | 5 | 2011-09-06 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 6 | ||
| 3 | isnan: Fix porting problem to Solaris 10 with bundled gcc. | 7 | isnan: Fix porting problem to Solaris 10 with bundled gcc. |
diff --git a/src/gtkutil.c b/src/gtkutil.c index c154797735e..04d05d2a630 100644 --- a/src/gtkutil.c +++ b/src/gtkutil.c | |||
| @@ -4219,6 +4219,7 @@ xg_make_tool_item (FRAME_PTR f, | |||
| 4219 | GtkToolItem *ti = gtk_tool_item_new (); | 4219 | GtkToolItem *ti = gtk_tool_item_new (); |
| 4220 | GtkWidget *vb = horiz ? gtk_hbox_new (FALSE, 0) : gtk_vbox_new (FALSE, 0); | 4220 | GtkWidget *vb = horiz ? gtk_hbox_new (FALSE, 0) : gtk_vbox_new (FALSE, 0); |
| 4221 | GtkWidget *wb = gtk_button_new (); | 4221 | GtkWidget *wb = gtk_button_new (); |
| 4222 | /* The eventbox is here so we can have tooltips on disabled items. */ | ||
| 4222 | GtkWidget *weventbox = gtk_event_box_new (); | 4223 | GtkWidget *weventbox = gtk_event_box_new (); |
| 4223 | 4224 | ||
| 4224 | if (wimage && !text_image) | 4225 | if (wimage && !text_image) |