aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rwxr-xr-xlib/egg/egg-toolbars-model.c6
-rw-r--r--lib/ephy-state.c7
2 files changed, 13 insertions, 0 deletions
diff --git a/lib/egg/egg-toolbars-model.c b/lib/egg/egg-toolbars-model.c
index a92617f92..5e9d81b65 100755
--- a/lib/egg/egg-toolbars-model.c
+++ b/lib/egg/egg-toolbars-model.c
@@ -827,3 +827,9 @@ egg_toolbars_model_get_item_type (EggToolbarsModel *t,
return retval;
}
+
+G_GNUC_UNUSED static void
+register_type (void)
+{
+ egg_tb_model_flags_get_type ();
+}
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 ();
+}