Added some missing comments
authorSami Rämö <sami.ramo@ixonos.com>
Mon, 19 Apr 2010 08:40:06 +0000 (11:40 +0300)
committerSami Rämö <sami.ramo@ixonos.com>
Mon, 19 Apr 2010 08:40:06 +0000 (11:40 +0300)
src/map/mapview.h
src/ui/mapviewscreen.h

index e454016..b4d971a 100644 (file)
@@ -47,7 +47,7 @@ protected:
     /**
     * @brief Called when view is resized.
     *
-    * @event resize event
+    * @param event resize event
     */
     void resizeEvent(QResizeEvent *event);
 
index 371783c..8e1eb3f 100644 (file)
@@ -40,16 +40,19 @@ public:
     MapViewScreen(QWidget *parent = 0);
 
 private slots:
+    /**
+    * @brief Debug method for centering to given coordinates
+    */
     void searchMap();
 
 private:
     MapEngine *mapEngine; ///< MapEngine
     //DEBUG
-    QPushButton *zoomIn;
-    QPushButton *zoomOut;
-    QLineEdit latLine;
-    QLineEdit lonLine;
-    QPushButton *search;
+    QPushButton *zoomIn; ///< Debug button for zooming in
+    QPushButton *zoomOut; ///< Debug button for zooming out
+    QLineEdit latLine; ///< Debug input field for latitude
+    QLineEdit lonLine; ///< Debug input field for longitude
+    QPushButton *search; ///< Debug button for centering to given coordinates
 };
 
 #endif // MAPVIEWTAB_H