summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.com>2016-06-03 18:42:59 -0400
committerOlivier CrĂȘte <olivier.crete@collabora.com>2016-06-03 18:42:59 -0400
commitfad72879fa4a0896c55ac6fc5f77f6c05e369a2b (patch)
tree10fbfdb38ea946d14cba7a4f62f828e8e5cf5ad9
parentf645ea6b11c167b1d7f4c5034f79664bdb8706d6 (diff)
downloadlibnice-fad72879fa4a0896c55ac6fc5f77f6c05e369a2b.tar.gz
pseudotcp: it's still a GObject
-rw-r--r--agent/pseudotcp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/agent/pseudotcp.c b/agent/pseudotcp.c
index 21cec65..3160c34 100644
--- a/agent/pseudotcp.c
+++ b/agent/pseudotcp.c
@@ -78,14 +78,14 @@
#include "agent-priv.h"
struct _PseudoTcpSocketClass {
- GIOStreamClass parent_class;
+ GObjectClass parent_class;
};
typedef struct _PseudoTcpSocketPrivate PseudoTcpSocketPrivate;
struct _PseudoTcpSocket {
- GIOStream parent;
+ GObject parent;
PseudoTcpSocketPrivate *priv;
};