]> err.no Git - mapper/commitdiff
Add gps_set_type, remove global dbus rfcomm
authorKaj-Michael Lang <milang@onion.tal.org>
Thu, 24 Jan 2008 13:11:53 +0000 (15:11 +0200)
committerKaj-Michael Lang <milang@onion.tal.org>
Thu, 24 Jan 2008 13:11:53 +0000 (15:11 +0200)
src/gps.c
src/gps.h

index b2e26352dcae31db75f2feed76f82a818d542dad..54e156ebb357b489c3436502f77edc47c57c0144 100644 (file)
--- a/src/gps.c
+++ b/src/gps.c
@@ -89,6 +89,12 @@ if (address)
 gps->io.port=port;
 }
 
+void
+gps_set_type(Gps *gps, GpsIOSourceType type)
+{
+gps->io.type=type;
+}
+
 void
 gps_free(Gps *gps)
 {
index 061146845c0d1cf480f2604c225389c566398970..da9276396afc60e7b3f83522439c3b7b901691d6 100644 (file)
--- a/src/gps.h
+++ b/src/gps.h
@@ -97,10 +97,9 @@ struct _Gps {
 Gps *_gps;
 gint _gmtoffset;
 
-DBusGProxy *_rfcomm_req_proxy;
-
 Gps *gps_new(GpsIOSourceType type);
 void gps_set_address(Gps *gps, gchar *address, guint port);
+void gps_set_type(Gps *gps, GpsIOSourceType type);
 void gps_free(Gps *gps);
 void gps_data_integerize(GpsData *gpsdata);
 gboolean gps_connect(Gps *gps);