summaryrefslogtreecommitdiff
path: root/telepathy-glib/handle-repo-static.c
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2008-01-16 12:37:48 +0000
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2008-01-16 12:37:48 +0000
commit5d61aea9b49c4ab13354e92643a2d473d05db852 (patch)
tree90cd6b9acbe757ddc1a08039973dcca5e4bc5f86 /telepathy-glib/handle-repo-static.c
parent79d0436ef7899991368a7e631421c2fec0c3a84e (diff)
downloadtelepathy-glib-5d61aea9b49c4ab13354e92643a2d473d05db852.tar.gz
Use G_PARAM_STATIC_NAME | G_PARAM_STATIC_BLURB | G_PARAM_STATIC_NICK for all pre-0.7.1 class properties too
20080116123748-53eee-0cdd61939c0e56b1d190ad0845794b0ac526fd86.gz
Diffstat (limited to 'telepathy-glib/handle-repo-static.c')
-rw-r--r--telepathy-glib/handle-repo-static.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/telepathy-glib/handle-repo-static.c b/telepathy-glib/handle-repo-static.c
index 9c2f644d5..68b832a61 100644
--- a/telepathy-glib/handle-repo-static.c
+++ b/telepathy-glib/handle-repo-static.c
@@ -180,8 +180,8 @@ tp_static_handle_repo_class_init (TpStaticHandleRepoClass *klass)
param_spec = g_param_spec_boxed ("handle-names", "Handle names",
"The static set of handle names supported by this repo.",
G_TYPE_STRV,
- G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE | G_PARAM_STATIC_NICK |
- G_PARAM_STATIC_BLURB);
+ G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE |
+ G_PARAM_STATIC_NAME | G_PARAM_STATIC_BLURB | G_PARAM_STATIC_NICK);
g_object_class_install_property (object_class, PROP_HANDLE_NAMES,
param_spec);
}