diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2004-04-20 05:49:10 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-04-20 05:49:10 +0800 |
commit | c2d154017138f36aebb6a4d6d1aad9234e9e4cec (patch) | |
tree | 3b26863358c2bd092bf96629296aebb54041366c /shell/e-component-registry.c | |
parent | e739391cceefb5b2c60c83f0aced1f8f399092f2 (diff) | |
download | gsoc2013-evolution-c2d154017138f36aebb6a4d6d1aad9234e9e4cec.tar.gz gsoc2013-evolution-c2d154017138f36aebb6a4d6d1aad9234e9e4cec.tar.zst gsoc2013-evolution-c2d154017138f36aebb6a4d6d1aad9234e9e4cec.zip |
Same.
2004-04-19 Jeffrey Stedfast <fejj@ximian.com>
* e-user-creatable-items-handler.c (ensure_menu_items): Same.
* e-shell-startup-wizard.c (make_timezone_page): Same.
* e-shell-settings-dialog.c (load_pages): Same.
* e-shell-importer.c (e_shell_importer_start_import): Same.
* e-component-registry.c (query_components): Don't use absolute
pixel sizes, use the E_ICON_SIZE enums instead.
svn path=/trunk/; revision=25528
Diffstat (limited to 'shell/e-component-registry.c')
-rw-r--r-- | shell/e-component-registry.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/e-component-registry.c b/shell/e-component-registry.c index 855ec1c350..a803af223c 100644 --- a/shell/e-component-registry.c +++ b/shell/e-component-registry.c @@ -173,7 +173,7 @@ query_components (EComponentRegistry *registry) if (icon_name == NULL) { icon = NULL; } else { - icon = e_icon_factory_get_icon (icon_name, 24); + icon = e_icon_factory_get_icon (icon_name, E_ICON_SIZE_LARGE_TOOLBAR); } sort_order_string = bonobo_server_info_prop_lookup (& info_list->_buffer[i], |