diff options
author | Rodrigo Moya <rodrigo@ximian.com> | 2002-07-03 07:16:47 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2002-07-03 07:16:47 +0800 |
commit | 4f31e9f28300834c3f8d2bfec7c35cac2b6995b0 (patch) | |
tree | 6f2e181190c9cb6c959b35ef0b68adee2f7f3ab2 /e-util/e-categories-config.h | |
parent | 6a4d86b16e49f9c516150373f192cf73b452c4ff (diff) | |
download | gsoc2013-evolution-4f31e9f28300834c3f8d2bfec7c35cac2b6995b0.tar.gz gsoc2013-evolution-4f31e9f28300834c3f8d2bfec7c35cac2b6995b0.tar.zst gsoc2013-evolution-4f31e9f28300834c3f8d2bfec7c35cac2b6995b0.zip |
Ă‘changed to return a gboolean (TRUE if the icon is found, FALSE if not).
2002-07-02 Rodrigo Moya <rodrigo@ximian.com>
* e-categories-config.c (e_categories_config_get_icon_for):Ă‘changed to
return a gboolean (TRUE if the icon is found, FALSE if not).
svn path=/trunk/; revision=17356
Diffstat (limited to 'e-util/e-categories-config.h')
-rw-r--r-- | e-util/e-categories-config.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/e-util/e-categories-config.h b/e-util/e-categories-config.h index 0b798e466e..99dc02be23 100644 --- a/e-util/e-categories-config.h +++ b/e-util/e-categories-config.h @@ -21,9 +21,9 @@ BEGIN_GNOME_DECLS const char *e_categories_config_get_color_for (const char *category); void e_categories_config_set_color_for (const char *category, const char *color); -void e_categories_config_get_icon_for (const char *category, - GdkPixmap **icon, - GdkBitmap **mask); +gboolean e_categories_config_get_icon_for (const char *category, + GdkPixmap **icon, + GdkBitmap **mask); const char *e_categories_config_get_icon_file_for (const char *category); void e_categories_config_set_icon_for (const char *category, const char *pixmap_file); |