Incorporated changes from bus project.
[ptas] / src / gpscontroller.h
index 438b3f8..30d4b26 100644 (file)
@@ -13,23 +13,23 @@ QTM_USE_NAMESPACE
 
 class GpsController : public QObject
 {
-  Q_OBJECT
+    Q_OBJECT
 
-public:
-  GpsController();
-  GpsController( GpsControllerPrivate *gpsControllerPrivate );
+    public:
+    GpsController();
+    GpsController(GpsControllerPrivate *gpsControllerPrivate);
 
-  ~GpsController();
+    ~GpsController();
 
-public Q_SLOTS:
-  void getGps();
-  void useFakeGps( const QString &fakeLocationLabel );
-  void useLiveGps();
+    public Q_SLOTS:
+    void getGps();
+    void useFakeGps(const QString &fakeLocationLabel);
+    void useLiveGps();
 
-Q_SIGNALS:
-  void locationChanged( Location *newLocation );
+    Q_SIGNALS:
+    void locationChanged(Location *newLocation);
 
-private:
+    private:
     GpsControllerPrivate *q;
 };