grim/guifications3

6fb1b4199a24
Parents c0306dd19a8d
Children 80051d90602e
fix some goofups with g_param_spec_enum that was causing stuff to blow up
--- a/gflib/gflib/gf_connection.c Sat Oct 10 23:04:02 2009 -0500
+++ b/gflib/gflib/gf_connection.c Sun Oct 11 00:32:58 2009 -0500
@@ -151,7 +151,7 @@
P_("Connection state"),
P_("The state that the connection is in."),
GF_TYPE_CONNECTION_STATE,
- GF_CONNECTION_STATE_UNKNOWN,
+ GF_CONNECTION_STATE_DISCONNECTED,
G_PARAM_READWRITE));
g_object_class_install_property(
--- a/gflib/gflib/gf_plugin.c Sat Oct 10 23:04:02 2009 -0500
+++ b/gflib/gflib/gf_plugin.c Sun Oct 11 00:32:58 2009 -0500
@@ -172,7 +172,7 @@
P_("The plugin state"),
P_("The GfPluginState for this plugin."),
GF_TYPE_PLUGIN_STATE,
- GF_PLUGIN_STATE_UNKNOWN,
+ GF_PLUGIN_STATE_NOT_LOADED,
G_PARAM_READABLE));
}