aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-call-factory.h
diff options
context:
space:
mode:
authorEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>2011-07-18 23:28:36 +0800
committerEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>2011-09-08 18:57:21 +0800
commit391bad3cd5545b504fd69563b3bb598320c4957d (patch)
tree4ef68a92fda3ff0d7b6a6c6148c3c97239fc269a /src/empathy-call-factory.h
parent2ab17b3039eef2c93d6fce4c5bee5f452fa8e8c1 (diff)
downloadgsoc2013-empathy-391bad3cd5545b504fd69563b3bb598320c4957d.tar
gsoc2013-empathy-391bad3cd5545b504fd69563b3bb598320c4957d.tar.gz
gsoc2013-empathy-391bad3cd5545b504fd69563b3bb598320c4957d.tar.bz2
gsoc2013-empathy-391bad3cd5545b504fd69563b3bb598320c4957d.tar.lz
gsoc2013-empathy-391bad3cd5545b504fd69563b3bb598320c4957d.tar.xz
gsoc2013-empathy-391bad3cd5545b504fd69563b3bb598320c4957d.tar.zst
gsoc2013-empathy-391bad3cd5545b504fd69563b3bb598320c4957d.zip
CallFactory: make it a TpBaseClient subclass
So that we can make it both a handler and an observer at the same time. https://bugzilla.gnome.org/show_bug.cgi?id=580794
Diffstat (limited to 'src/empathy-call-factory.h')
-rw-r--r--src/empathy-call-factory.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/empathy-call-factory.h b/src/empathy-call-factory.h
index 0e5276278..174fbf4bd 100644
--- a/src/empathy-call-factory.h
+++ b/src/empathy-call-factory.h
@@ -29,12 +29,11 @@ typedef struct _EmpathyCallFactory EmpathyCallFactory;
typedef struct _EmpathyCallFactoryClass EmpathyCallFactoryClass;
struct _EmpathyCallFactoryClass {
- GObjectClass parent_class;
+ TpBaseClientClass parent_class;
};
struct _EmpathyCallFactory {
- GObject parent;
- gpointer priv;
+ TpBaseClient parent;
};
GType empathy_call_factory_get_type (void);