summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2012-05-07 14:13:26 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2012-05-07 14:55:37 +0100
commitb0c496fcdef44d362032ea7c7d82c1adf75939fd (patch)
tree8a60f5ace1ffdd72a5dd3ffc94fa3ce8997b1caf
parent94a6e82852505949aa53b1b4096c2eab5201a6d2 (diff)
Don't _TP_SEAL parent or privseal
These will stay when the structs get reduced in next. I left TpConnectionManagerParam.priv sealed, because the entire struct should become private instead of the fields being deleted.
-rw-r--r--telepathy-glib/connection-manager.h4
-rw-r--r--telepathy-glib/proxy.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/telepathy-glib/connection-manager.h b/telepathy-glib/connection-manager.h
index 8488de985..7590031d2 100644
--- a/telepathy-glib/connection-manager.h
+++ b/telepathy-glib/connection-manager.h
@@ -81,7 +81,7 @@ typedef enum
struct _TpConnectionManager {
/*<private>*/
- TpProxy _TP_SEAL (parent);
+ TpProxy parent;
const gchar *_TP_SEAL (name);
const TpConnectionManagerProtocol * const *_TP_SEAL (protocols);
@@ -93,7 +93,7 @@ struct _TpConnectionManager {
unsigned int _TP_SEAL (info_source):2;
guint _TP_SEAL (reserved_flags):28;
- TpConnectionManagerPrivate *_TP_SEAL (priv);
+ TpConnectionManagerPrivate *priv;
};
struct _TpConnectionManagerClass {
diff --git a/telepathy-glib/proxy.h b/telepathy-glib/proxy.h
index 2daa8b3f7..300b507e9 100644
--- a/telepathy-glib/proxy.h
+++ b/telepathy-glib/proxy.h
@@ -60,7 +60,7 @@ typedef enum {
struct _TpProxy {
/*<private>*/
- GObject _TP_SEAL (parent);
+ GObject parent;
TpDBusDaemon *_TP_SEAL (dbus_daemon);
DBusGConnection *_TP_SEAL (dbus_connection);
@@ -69,7 +69,7 @@ struct _TpProxy {
GError *_TP_SEAL (invalidated);
- TpProxyPrivate *_TP_SEAL (priv);
+ TpProxyPrivate *priv;
};
typedef struct _TpProxyClass TpProxyClass;