diff options
author | Dan Winship <danw@src.gnome.org> | 2003-07-23 22:55:52 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2003-07-23 22:55:52 +0800 |
commit | 64a3e0a91c24b5b6677bfc1149505e620ddc4875 (patch) | |
tree | f29d109cd8938e517dfdd6c046da36160e07052d /e-util/e-gui-utils.c | |
parent | c4e2afa4a076769c3bd22393edd6ca8710f96c2e (diff) | |
download | gsoc2013-evolution-64a3e0a91c24b5b6677bfc1149505e620ddc4875.tar.gz gsoc2013-evolution-64a3e0a91c24b5b6677bfc1149505e620ddc4875.tar.zst gsoc2013-evolution-64a3e0a91c24b5b6677bfc1149505e620ddc4875.zip |
Fix a non-ANSI switch label.
* e-component-listener.c (connection_listen_cb): Fix a non-ANSI
switch label.
* e-gui-utils.c: only include "art/empty.xpm" if
HAVE_LIBGNOMEUI_GNOME_ICON_LOOKUP_H isn't defined
* e-xml-hash-utils.c (e_xml_to_hash): Deconstify a non-const
variable to fix a warning.
svn path=/trunk/; revision=21901
Diffstat (limited to 'e-util/e-gui-utils.c')
-rw-r--r-- | e-util/e-gui-utils.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/e-util/e-gui-utils.c b/e-util/e-gui-utils.c index 80cf4affc0..fc8e5921b2 100644 --- a/e-util/e-gui-utils.c +++ b/e-util/e-gui-utils.c @@ -23,12 +23,13 @@ #include <gtk/gtkhbox.h> #include <libgnome/gnome-program.h> -#ifdef HAVE_LIBGNOMEUI_GNOME_ICON_LOOKUP_H -#include <libgnomeui/gnome-icon-lookup.h> -#endif #include <libgnomevfs/gnome-vfs-mime-handlers.h> +#ifdef HAVE_LIBGNOMEUI_GNOME_ICON_LOOKUP_H +#include <libgnomeui/gnome-icon-lookup.h> +#else #include "art/empty.xpm" +#endif GtkWidget *e_create_image_widget(gchar *name, gchar *string1, gchar *string2, |