summaryrefslogtreecommitdiff
path: root/src/gclue-3g.h
diff options
context:
space:
mode:
authorZeeshan Ali (Khattak) <zeeshanak@gnome.org>2014-06-08 20:38:40 +0100
committerZeeshan Ali (Khattak) <zeeshanak@gnome.org>2014-06-10 17:20:14 +0100
commit78046b9a94d0b8b106a7c56467ff19f1bb740986 (patch)
tree9a1024da505fc6d7518985f067de88687f4bf946 /src/gclue-3g.h
parent9231e644bfe8761672d8884f488590ed46418ce5 (diff)
downloadgeoclue-78046b9a94d0b8b106a7c56467ff19f1bb740986.tar.gz
3g: Use Modem class
Instead of deriving from GClueModemSource class, GClue3G now just uses GClueModem singleton to talk to ModemManager. Refer to 9231e64 ("Add GClueModem class") for rationale.
Diffstat (limited to 'src/gclue-3g.h')
-rw-r--r--src/gclue-3g.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gclue-3g.h b/src/gclue-3g.h
index 66a6f14..7b0bf34 100644
--- a/src/gclue-3g.h
+++ b/src/gclue-3g.h
@@ -24,7 +24,7 @@
#include <glib.h>
#include <gio/gio.h>
-#include "gclue-modem-source.h"
+#include "gclue-location-source.h"
G_BEGIN_DECLS
@@ -48,7 +48,7 @@ typedef struct _GClue3GPrivate GClue3GPrivate;
struct _GClue3G {
/* <private> */
- GClueModemSource parent_instance;
+ GClueLocationSource parent_instance;
GClue3GPrivate *priv;
};
@@ -59,7 +59,7 @@ struct _GClue3G {
**/
struct _GClue3GClass {
/* <private> */
- GClueModemSourceClass parent_class;
+ GClueLocationSourceClass parent_class;
};
GClue3G * gclue_3g_get_singleton (void);