summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2014-04-07 13:52:10 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2014-04-07 13:52:10 +0100
commitf8880ef0a35d01ab0bb72d86b1b22425fdaa2d91 (patch)
treebefaf831fe5127e23f1ede139d7eb7287b0ed802
parentc4a056571a9fa96b6dfd128ffde34a981d79d53b (diff)
Change terminology from handle type to entity typenext-handle-type
In the process, pick up a new constants.py from MC.
-rw-r--r--src/connection.c4
-rw-r--r--src/connection.h2
-rw-r--r--tests/twisted/constants.py8
3 files changed, 11 insertions, 3 deletions
diff --git a/src/connection.c b/src/connection.c
index 6415635..fccfd8a 100644
--- a/src/connection.c
+++ b/src/connection.c
@@ -981,12 +981,12 @@ haze_get_connection_ui_ops ()
const gchar *
haze_connection_handle_inspect (HazeConnection *conn,
- TpEntityType handle_type,
+ TpEntityType entity_type,
TpHandle handle)
{
TpBaseConnection *base_conn = TP_BASE_CONNECTION (conn);
TpHandleRepoIface *handle_repo =
- tp_base_connection_get_handles (base_conn, handle_type);
+ tp_base_connection_get_handles (base_conn, entity_type);
g_assert (tp_handle_is_valid (handle_repo, handle, NULL));
return tp_handle_inspect (handle_repo, handle);
}
diff --git a/src/connection.h b/src/connection.h
index 9720429..97ba309 100644
--- a/src/connection.h
+++ b/src/connection.h
@@ -70,7 +70,7 @@ PurpleConnectionUiOps *haze_get_connection_ui_ops (void);
const gchar *
haze_connection_handle_inspect (HazeConnection *conn,
- TpEntityType handle_type,
+ TpEntityType entity_type,
TpHandle handle);
gboolean haze_connection_create_account (HazeConnection *self, GError **error);
diff --git a/tests/twisted/constants.py b/tests/twisted/constants.py
index 9c12bd1..8272a67 100644
--- a/tests/twisted/constants.py
+++ b/tests/twisted/constants.py
@@ -63,6 +63,8 @@ CHANNEL_TYPE_SERVER_TLS_CONNECTION = \
CHANNEL + ".Type.ServerTLSConnection1"
CHANNEL_TYPE = CHANNEL + '.ChannelType'
+TARGET_ENTITY_TYPE = CHANNEL + '.TargetEntityType'
+# let's leave this as a synonym to reduce tests' diff churn in CMs
TARGET_HANDLE_TYPE = CHANNEL + '.TargetEntityType'
TARGET_HANDLE = CHANNEL + '.TargetHandle'
TARGET_ID = CHANNEL + '.TargetID'
@@ -590,3 +592,9 @@ TEST_DBUS_ACCOUNT_SERVICE_IFACE = TEST_DBUS_ACCOUNT_SERVICE
TEST_DBUS_ACCOUNT_PLUGIN_PATH = TESTSLASH + "DBusAccountPlugin"
TEST_DBUS_ACCOUNT_PLUGIN_IFACE = TESTDOT + "DBusAccountPlugin"
+
+class StorageRestrictionFlags(object):
+ CANNOT_SET_PARAMETERS = 1
+ CANNOT_SET_ENABLED = 2
+ CANNOT_SET_PRESENCE = 4
+ CANNOT_SET_SERVICE = 8