From d250ae5d81ab8735a601e9a9160eda213f746e43 Mon Sep 17 00:00:00 2001 From: Maciej Suminski Date: Mon, 11 Nov 2013 13:47:08 +0100 Subject: [PATCH] Corrected Doxygen comments notation. --- include/class_drawpanel_gal.h | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/include/class_drawpanel_gal.h b/include/class_drawpanel_gal.h index dd52d406b8..4d9acac711 100644 --- a/include/class_drawpanel_gal.h +++ b/include/class_drawpanel_gal.h @@ -99,7 +99,7 @@ public: } /// @copydoc wxWindow::Refresh() - virtual void Refresh( bool eraseBackground = true, const wxRect* rect = NULL ); + void Refresh( bool eraseBackground = true, const wxRect* rect = NULL ); /** * Function SetEventDispatcher() @@ -121,34 +121,34 @@ protected: static const int MinRefreshPeriod = 17; ///< 60 FPS. - ///< Last timestamp when the panel was refreshed + /// Last timestamp when the panel was refreshed wxLongLong m_lastRefresh; - ///< Is there a redraw event requested? + /// Is there a redraw event requested? bool m_pendingRefresh; - ///< True if GAL is currently redrawing the view + /// True if GAL is currently redrawing the view bool m_drawing; - ///< Timer responsible for preventing too frequent refresh + /// Timer responsible for preventing too frequent refresh wxTimer m_refreshTimer; - ///< Interface for drawing objects on a 2D-surface + /// Interface for drawing objects on a 2D-surface KIGFX::GAL* m_gal; - ///< Stores view settings (scale, center, etc.) and items to be drawn + /// Stores view settings (scale, center, etc.) and items to be drawn KIGFX::VIEW* m_view; - ///< Contains information about how to draw items using GAL + /// Contains information about how to draw items using GAL KIGFX::PAINTER* m_painter; - ///< Control for VIEW (moving, zooming, etc.) + /// Control for VIEW (moving, zooming, etc.) KIGFX::WX_VIEW_CONTROLS* m_viewControls; - ///< Currently used GAL + /// Currently used GAL GalType m_currentGal; - ///< Processes and forwards events to tools + /// Processes and forwards events to tools TOOL_DISPATCHER* m_eventDispatcher; };