diff options
author | Rodrigo Moya <rodrigo@ximian.com> | 2001-08-10 08:27:11 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2001-08-10 08:27:11 +0800 |
commit | 76ab4cd9fce53cd4db8906d47b599f3264c8bd48 (patch) | |
tree | dfaedfc84a939048ba2877e177f637d4a6b45298 | |
parent | 01fa840a36c950fcbd18f11183320a403c5fc903 (diff) | |
download | gsoc2013-evolution-76ab4cd9fce53cd4db8906d47b599f3264c8bd48.tar gsoc2013-evolution-76ab4cd9fce53cd4db8906d47b599f3264c8bd48.tar.gz gsoc2013-evolution-76ab4cd9fce53cd4db8906d47b599f3264c8bd48.tar.bz2 gsoc2013-evolution-76ab4cd9fce53cd4db8906d47b599f3264c8bd48.tar.lz gsoc2013-evolution-76ab4cd9fce53cd4db8906d47b599f3264c8bd48.tar.xz gsoc2013-evolution-76ab4cd9fce53cd4db8906d47b599f3264c8bd48.tar.zst gsoc2013-evolution-76ab4cd9fce53cd4db8906d47b599f3264c8bd48.zip |
return when there's no icon associated with the category
2001-08-09 Rodrigo Moya <rodrigo@ximian.com>
* e-categories-config.c (e_categories_config_get_icon_for): return
when there's no icon associated with the category
svn path=/trunk/; revision=11860
-rw-r--r-- | e-util/ChangeLog | 3 | ||||
-rw-r--r-- | e-util/e-categories-config.c | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index 304e2f43e0..26109f20aa 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,5 +1,8 @@ 2001-08-09 Rodrigo Moya <rodrigo@ximian.com> + * e-categories-config.c (e_categories_config_get_icon_for): return + when there's no icon associated with the category + * e-categories-config.c: reworked to use the ECategoriesMasterListWombat class. Also, load correctly images (fixes #6794) diff --git a/e-util/e-categories-config.c b/e-util/e-categories-config.c index 25c6ceff5c..72db8e572c 100644 --- a/e-util/e-categories-config.c +++ b/e-util/e-categories-config.c @@ -96,6 +96,7 @@ e_categories_config_get_icon_for (const char *category, GdkPixmap **pixmap, GdkB *pixmap = NULL; if (mask != NULL) *mask = NULL; + return; } /* load the icon in our list */ |