summaryrefslogtreecommitdiff
path: root/libpurple/theme.c
diff options
context:
space:
mode:
authorJustin Rodriguez <ffdragon@soc.pidgin.im>2008-06-21 23:42:57 +0000
committerJustin Rodriguez <ffdragon@soc.pidgin.im>2008-06-21 23:42:57 +0000
commitfc42de072c7eb71237827546d7d29e2a2f37d14d (patch)
tree7bc3269e5be06563b6fdecae47a1cb34539c240b /libpurple/theme.c
parent4c5f47313b880f299b7e5eb50f79ef01346d4419 (diff)
downloadpidgin-fc42de072c7eb71237827546d7d29e2a2f37d14d.tar.gz
fixed some gobject stuff
Diffstat (limited to 'libpurple/theme.c')
-rw-r--r--libpurple/theme.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libpurple/theme.c b/libpurple/theme.c
index c94cb7ce61..48583c30ab 100644
--- a/libpurple/theme.c
+++ b/libpurple/theme.c
@@ -194,7 +194,7 @@ purple_theme_class_init (PurpleThemeClass *klass)
/* PREVIEW IMAGE */
pspec = g_param_spec_pointer(PROP_IMAGE_S, "Image",
"A preview image of the theme",
- G_PARAM_READABLE);
+ G_PARAM_READWRITE);
g_object_class_install_property(obj_class, PROP_IMAGE, pspec);
}
@@ -217,7 +217,7 @@ purple_theme_get_type (void)
NULL, /* value table */
};
type = g_type_register_static (G_TYPE_OBJECT,
- "PurpleThemeType",
+ "PurpleTheme",
&info, G_TYPE_FLAG_ABSTRACT);
}
return type;