diff options
author | Guillaume Desmottes <gdesmott@gnome.org> | 2009-04-16 23:32:29 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-04-17 17:37:03 +0800 |
commit | 75d72600210ef76510cf73f173891cf8fa3b3451 (patch) | |
tree | 3904c312f1218ed5a3d3914b9b149fe9ac3f9cb3 | |
parent | e3dbc8ab8129308573c1804c67701b9d08732367 (diff) | |
download | gsoc2013-empathy-75d72600210ef76510cf73f173891cf8fa3b3451.tar gsoc2013-empathy-75d72600210ef76510cf73f173891cf8fa3b3451.tar.gz gsoc2013-empathy-75d72600210ef76510cf73f173891cf8fa3b3451.tar.bz2 gsoc2013-empathy-75d72600210ef76510cf73f173891cf8fa3b3451.tar.lz gsoc2013-empathy-75d72600210ef76510cf73f173891cf8fa3b3451.tar.xz gsoc2013-empathy-75d72600210ef76510cf73f173891cf8fa3b3451.tar.zst gsoc2013-empathy-75d72600210ef76510cf73f173891cf8fa3b3451.zip |
empathy_tp_tube_class_init: use G_PARAM_STATIC_STRINGS
-rw-r--r-- | libempathy/empathy-tp-tube.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libempathy/empathy-tp-tube.c b/libempathy/empathy-tp-tube.c index 088c94052..c2a2e0c77 100644 --- a/libempathy/empathy-tp-tube.c +++ b/libempathy/empathy-tp-tube.c @@ -229,13 +229,11 @@ empathy_tp_tube_class_init (EmpathyTpTubeClass *klass) g_object_class_install_property (object_class, PROP_CHANNEL, g_param_spec_object ("channel", "channel", "channel", TP_TYPE_CHANNEL, - G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_NAME | - G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB)); + G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS)); g_object_class_install_property (object_class, PROP_STATE, g_param_spec_uint ("state", "state", "state", 0, G_MAXUINT, 0, - G_PARAM_READABLE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | - G_PARAM_STATIC_BLURB)); + G_PARAM_READABLE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_STRINGS)); signals[DESTROY] = g_signal_new ("destroy", G_TYPE_FROM_CLASS (klass), |