diff options
author | Miguel de Icaza <miguel@src.gnome.org> | 2000-09-18 02:38:39 +0800 |
---|---|---|
committer | Miguel de Icaza <miguel@src.gnome.org> | 2000-09-18 02:38:39 +0800 |
commit | 025b5a3e0d9307086abb8572f89b64494fc5d2e8 (patch) | |
tree | d618b9450b479deb4f030de16327950e71393fbd | |
parent | 13679221973a960628aa73dfa289b591e0de27e1 (diff) | |
download | gsoc2013-evolution-025b5a3e0d9307086abb8572f89b64494fc5d2e8.tar gsoc2013-evolution-025b5a3e0d9307086abb8572f89b64494fc5d2e8.tar.gz gsoc2013-evolution-025b5a3e0d9307086abb8572f89b64494fc5d2e8.tar.bz2 gsoc2013-evolution-025b5a3e0d9307086abb8572f89b64494fc5d2e8.tar.lz gsoc2013-evolution-025b5a3e0d9307086abb8572f89b64494fc5d2e8.tar.xz gsoc2013-evolution-025b5a3e0d9307086abb8572f89b64494fc5d2e8.tar.zst gsoc2013-evolution-025b5a3e0d9307086abb8572f89b64494fc5d2e8.zip |
Remove ifdefed 0 prototypes
svn path=/trunk/; revision=5478
-rw-r--r-- | e-util/e-util.h | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/e-util/e-util.h b/e-util/e-util.h index e8a52e8d62..0b252a174a 100644 --- a/e-util/e-util.h +++ b/e-util/e-util.h @@ -25,10 +25,10 @@ GtkType l##_get_type(void)\ } typedef enum { - E_FOCUS_NONE, - E_FOCUS_CURRENT, - E_FOCUS_START, - E_FOCUS_END + E_FOCUS_NONE, + E_FOCUS_CURRENT, + E_FOCUS_START, + E_FOCUS_END } EFocus; int g_str_compare (const void *x, const void *y); @@ -41,9 +41,6 @@ void e_free_string_list (GList *list); char *e_read_file (const char *filename); gint e_write_file(const char *filename, const char *data, int flags); -#if 0 -char *e_read_uri (const char *uri); -#endif gchar **e_strsplit (const gchar *string, const gchar *delimiter, |