diff options
author | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-04-21 23:26:39 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-04-21 23:26:39 +0800 |
commit | 3483ec84f10e6e4edd1b057788578292d0c32a88 (patch) | |
tree | b04cd7b49ece0dada27728ccccb0d826f684b3be /e-util/e-icon-factory.c | |
parent | 93da748e15a23843bdafbff7f2b08c621fd275b3 (diff) | |
download | gsoc2013-evolution-3483ec84f10e6e4edd1b057788578292d0c32a88.tar.gz gsoc2013-evolution-3483ec84f10e6e4edd1b057788578292d0c32a88.tar.zst gsoc2013-evolution-3483ec84f10e6e4edd1b057788578292d0c32a88.zip |
*** empty log message ***
svn path=/trunk/; revision=25563
Diffstat (limited to 'e-util/e-icon-factory.c')
-rw-r--r-- | e-util/e-icon-factory.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/e-util/e-icon-factory.c b/e-util/e-icon-factory.c index a558e046b0..425e03c5ab 100644 --- a/e-util/e-icon-factory.c +++ b/e-util/e-icon-factory.c @@ -178,7 +178,6 @@ e_icon_factory_get_icon_filename (const char *icon_name, int icon_size) g_return_val_if_fail (strcmp (icon_name, ""), NULL); if (icon_size >= E_ICON_NUM_SIZES) { - g_warning ("e_icon_factory_get_icon_filename(): Invalid argument for icon_size: use one of the E_ICON_SIZE_* enum values"); if ((icon_size = pixel_size_to_icon_size (icon_size)) == -1) return NULL; } @@ -201,7 +200,6 @@ e_icon_factory_get_icon (const char *icon_name, int icon_size) int size; if (icon_size >= E_ICON_NUM_SIZES) { - g_warning ("e_icon_factory_get_icon(): Invalid argument for icon_size: use one of the E_ICON_SIZE_* enum values"); if ((icon_size = pixel_size_to_icon_size (icon_size)) == -1) return NULL; } |