diff options
author | Not Zed <NotZed@Ximian.com> | 2004-10-20 15:42:49 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-10-20 15:42:49 +0800 |
commit | 691f1886c3988f89d6830e7d8901c37b2e8e8284 (patch) | |
tree | e40ce6ccd27c0f4c4737fe6c1395049ff0b9464b /e-util/e-config.h | |
parent | 10a951b6660b9a1aa8d7e709a3a7c67435873da0 (diff) | |
download | gsoc2013-evolution-691f1886c3988f89d6830e7d8901c37b2e8e8284.tar.gz gsoc2013-evolution-691f1886c3988f89d6830e7d8901c37b2e8e8284.tar.zst gsoc2013-evolution-691f1886c3988f89d6830e7d8901c37b2e8e8284.zip |
check for empty trailing sections/pages after we exit the main loop.
2004-10-20 Not Zed <NotZed@Ximian.com>
* e-config.c (ec_rebuild): check for empty trailing sections/pages
after we exit the main loop.
* e-plugin.c (e_plugin_get_type): make ~/.eplugins the default
eplugin location, not ~/.eplug.
2004-10-18 Not Zed <NotZed@Ximian.com>
* e-config.h: fix some forward decls.
svn path=/trunk/; revision=27644
Diffstat (limited to 'e-util/e-config.h')
-rw-r--r-- | e-util/e-config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/e-util/e-config.h b/e-util/e-config.h index 96a6a7025a..b05990f625 100644 --- a/e-util/e-config.h +++ b/e-util/e-config.h @@ -239,13 +239,13 @@ void e_config_add_page_check(EConfig *, const char *pageid, EConfigCheckFunc, vo void e_config_set_target(EConfig *emp, EConfigTarget *target); struct _GtkWidget *e_config_create_widget(EConfig *); -GtkWidget *e_config_create_window(EConfig *emp, struct _GtkWindow *parent, const char *title); +struct _GtkWidget *e_config_create_window(EConfig *emp, struct _GtkWindow *parent, const char *title); void e_config_target_changed(EConfig *emp, e_config_target_change_t how); gboolean e_config_page_check(EConfig *, const char *); -GtkWidget *e_config_page_get(EConfig *ec, const char *pageid); +struct _GtkWidget *e_config_page_get(EConfig *ec, const char *pageid); const char *e_config_page_next(EConfig *ec, const char *pageid); const char *e_config_page_prev(EConfig *ec, const char *pageid); |