diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-01-07 07:13:11 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-01-07 07:13:11 +0800 |
commit | 020d759fa2d1a462d4179210bf7f5f8622246380 (patch) | |
tree | 74ffe6bf2c8005967a5651f20ed63c48d6543f61 /lib/ephy-state.c | |
parent | 3b089d15448350161cfe7cee83dbfc57d33df11b (diff) | |
download | gsoc2013-epiphany-020d759fa2d1a462d4179210bf7f5f8622246380.tar gsoc2013-epiphany-020d759fa2d1a462d4179210bf7f5f8622246380.tar.gz gsoc2013-epiphany-020d759fa2d1a462d4179210bf7f5f8622246380.tar.bz2 gsoc2013-epiphany-020d759fa2d1a462d4179210bf7f5f8622246380.tar.lz gsoc2013-epiphany-020d759fa2d1a462d4179210bf7f5f8622246380.tar.xz gsoc2013-epiphany-020d759fa2d1a462d4179210bf7f5f8622246380.tar.zst gsoc2013-epiphany-020d759fa2d1a462d4179210bf7f5f8622246380.zip |
Add dummy functions to call some get_types funcs, otherwise they don't get
2005-01-07 Christian Persch <chpe@cvs.gnome.org>
* lib/egg/egg-toolbars-model.c: (register_type):
* lib/ephy-state.c: (register_type):
* lib/ephy-state.h:
Add dummy functions to call some get_types funcs, otherwise
they don't get exported.
* src/Makefile.am:
Remove unused defines.
Diffstat (limited to 'lib/ephy-state.c')
-rw-r--r-- | lib/ephy-state.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/ephy-state.c b/lib/ephy-state.c index 452d56b7b..66e673504 100644 --- a/lib/ephy-state.c +++ b/lib/ephy-state.c @@ -23,6 +23,7 @@ #include "config.h" #include "ephy-state.h" +#include "ephy-lib-type-builtins.h" #include "ephy-file-helpers.h" #include "ephy-node-db.h" #include "ephy-node-common.h" @@ -513,3 +514,9 @@ ephy_state_save (void) states_db = NULL; } } + +G_GNUC_UNUSED static void +register_type (void) +{ + ephy_state_window_flags_get_type (); +} |