diff options
author | Jeffrey Stedfast <fejj@novell.com> | 2004-05-18 01:10:39 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-05-18 01:10:39 +0800 |
commit | a6d439b765bfc2d6b27ccbf03697b47efb2dcb9f (patch) | |
tree | e08627808d0a75a783858806e758758bda0d0dd8 /widgets/misc/e-combo-button.c | |
parent | c6edbf228c5ffd80c4d884a96d3f1564d17ec686 (diff) | |
download | gsoc2013-evolution-a6d439b765bfc2d6b27ccbf03697b47efb2dcb9f.tar.gz gsoc2013-evolution-a6d439b765bfc2d6b27ccbf03697b47efb2dcb9f.tar.zst gsoc2013-evolution-a6d439b765bfc2d6b27ccbf03697b47efb2dcb9f.zip |
Use E_ICON_SIZE_BUTTON for the icon size in the e_icon_factory_get_icon()
2004-05-17 Jeffrey Stedfast <fejj@novell.com>
* e-url-entry.c (init): Use E_ICON_SIZE_BUTTON for the icon size
in the e_icon_factory_get_icon() call.
* e-combo-button.c (create_empty_image_widget): Don't hard-code
the size of the icon in pixels, instead use the appropriate
E_ICON_SIZE_ enum.
svn path=/trunk/; revision=25930
Diffstat (limited to 'widgets/misc/e-combo-button.c')
-rw-r--r-- | widgets/misc/e-combo-button.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/misc/e-combo-button.c b/widgets/misc/e-combo-button.c index 5dafec034e..e336e88906 100644 --- a/widgets/misc/e-combo-button.c +++ b/widgets/misc/e-combo-button.c @@ -73,7 +73,7 @@ create_empty_image_widget (void) GtkWidget *image_widget; GdkPixbuf *pixbuf; - pixbuf = e_icon_factory_get_icon (NULL, 16); + pixbuf = e_icon_factory_get_icon (NULL, E_ICON_SIZE_MENU); image_widget = gtk_image_new_from_pixbuf (pixbuf); |