summaryrefslogtreecommitdiff
path: root/src/tube-iface.c
diff options
context:
space:
mode:
authorAlban Crequy <alban.crequy@collabora.co.uk>2008-11-09 21:47:42 +0000
committerAlban Crequy <alban.crequy@collabora.co.uk>2008-11-09 21:47:42 +0000
commitc224564da4e90f6ac2858da1b013db6af5d805cb (patch)
treee5e6db8410db0251df97cef5321aa128ca5365bc /src/tube-iface.c
parente3190c6a61149248b91948b24826908cf70c6aaf (diff)
downloadtelepathy-salut-c224564da4e90f6ac2858da1b013db6af5d805cb.tar.gz
Salut: use G_PARAM_STATIC_STRINGS
Diffstat (limited to 'src/tube-iface.c')
-rw-r--r--src/tube-iface.c50
1 files changed, 10 insertions, 40 deletions
diff --git a/src/tube-iface.c b/src/tube-iface.c
index 99ed8ff6..26bfdf4b 100644
--- a/src/tube-iface.c
+++ b/src/tube-iface.c
@@ -67,10 +67,7 @@ salut_tube_iface_base_init (gpointer klass)
"Salut connection object that owns this D-Bus tube object.",
SALUT_TYPE_CONNECTION,
G_PARAM_CONSTRUCT_ONLY |
- G_PARAM_READWRITE |
- G_PARAM_STATIC_NAME |
- G_PARAM_STATIC_NICK |
- G_PARAM_STATIC_BLURB);
+ G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
g_object_interface_install_property (klass, param_spec);
param_spec = g_param_spec_uint (
@@ -80,10 +77,7 @@ salut_tube_iface_base_init (gpointer klass)
"owns this D-Bus tube object.",
0, G_MAXUINT32, 0,
G_PARAM_CONSTRUCT_ONLY |
- G_PARAM_READWRITE |
- G_PARAM_STATIC_NAME |
- G_PARAM_STATIC_NICK |
- G_PARAM_STATIC_BLURB);
+ G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
g_object_interface_install_property (klass, param_spec);
param_spec = g_param_spec_uint (
@@ -93,10 +87,7 @@ salut_tube_iface_base_init (gpointer klass)
"that owns this D-Bus tube object.",
0, G_MAXUINT32, 0,
G_PARAM_CONSTRUCT_ONLY |
- G_PARAM_READWRITE |
- G_PARAM_STATIC_NAME |
- G_PARAM_STATIC_NICK |
- G_PARAM_STATIC_BLURB);
+ G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
g_object_interface_install_property (klass, param_spec);
param_spec = g_param_spec_uint (
@@ -106,10 +97,7 @@ salut_tube_iface_base_init (gpointer klass)
"connection's self handle if our handle is a room handle.",
0, G_MAXUINT, 0,
G_PARAM_CONSTRUCT_ONLY |
- G_PARAM_READWRITE |
- G_PARAM_STATIC_NAME |
- G_PARAM_STATIC_NICK |
- G_PARAM_STATIC_BLURB);
+ G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
g_object_interface_install_property (klass, param_spec);
param_spec = g_param_spec_uint (
@@ -118,10 +106,7 @@ salut_tube_iface_base_init (gpointer klass)
"The unique identifier of this tube",
0, G_MAXUINT32, 0,
G_PARAM_CONSTRUCT_ONLY |
- G_PARAM_READWRITE |
- G_PARAM_STATIC_NAME |
- G_PARAM_STATIC_NICK |
- G_PARAM_STATIC_BLURB);
+ G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
g_object_interface_install_property (klass, param_spec);
param_spec = g_param_spec_uint (
@@ -129,10 +114,7 @@ salut_tube_iface_base_init (gpointer klass)
"Tube type",
"The TpTubeType this D-Bus tube object.",
0, G_MAXUINT32, 0,
- G_PARAM_READABLE |
- G_PARAM_STATIC_NAME |
- G_PARAM_STATIC_NICK |
- G_PARAM_STATIC_BLURB);
+ G_PARAM_READABLE | G_PARAM_STATIC_STRINGS);
g_object_interface_install_property (klass, param_spec);
param_spec = g_param_spec_uint (
@@ -141,10 +123,7 @@ salut_tube_iface_base_init (gpointer klass)
"The TpHandle of the initiator of this D-Bus tube object.",
0, G_MAXUINT32, 0,
G_PARAM_CONSTRUCT_ONLY |
- G_PARAM_READWRITE |
- G_PARAM_STATIC_NAME |
- G_PARAM_STATIC_NICK |
- G_PARAM_STATIC_BLURB);
+ G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
g_object_interface_install_property (klass, param_spec);
param_spec = g_param_spec_string (
@@ -153,10 +132,7 @@ salut_tube_iface_base_init (gpointer klass)
"the service associated with this D-BUS tube object.",
"",
G_PARAM_CONSTRUCT_ONLY |
- G_PARAM_READWRITE |
- G_PARAM_STATIC_NAME |
- G_PARAM_STATIC_NICK |
- G_PARAM_STATIC_BLURB);
+ G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
g_object_interface_install_property (klass, param_spec);
param_spec = g_param_spec_boxed (
@@ -165,10 +141,7 @@ salut_tube_iface_base_init (gpointer klass)
"GHashTable containing parameters of this DBUS tube object.",
G_TYPE_HASH_TABLE,
G_PARAM_CONSTRUCT_ONLY |
- G_PARAM_READWRITE |
- G_PARAM_STATIC_NAME |
- G_PARAM_STATIC_NICK |
- G_PARAM_STATIC_BLURB);
+ G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
g_object_interface_install_property (klass, param_spec);
param_spec = g_param_spec_uint (
@@ -176,10 +149,7 @@ salut_tube_iface_base_init (gpointer klass)
"Tube state",
"The SalutTubeState of this DBUS tube object",
0, G_MAXUINT32, TP_TUBE_STATE_REMOTE_PENDING,
- G_PARAM_READABLE |
- G_PARAM_STATIC_NAME |
- G_PARAM_STATIC_NICK |
- G_PARAM_STATIC_BLURB);
+ G_PARAM_READABLE | G_PARAM_STATIC_STRINGS);
g_object_interface_install_property (klass, param_spec);
initialized = TRUE;