]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/propgrid/propgridpagestate.h
undo the last change as it results in buildbot configuration error
[wxWidgets.git] / interface / wx / propgrid / propgridpagestate.h
index af2ee8d8825b39d3077c7a25e03eb338af4e4ca1..18c1407d25eb6383343ff4e981dd25c3ef8de557 100644 (file)
@@ -2,12 +2,13 @@
 // Name:        property.h
 // Purpose:     interface of wxPGProperty
 // Author:      wxWidgets team
-// RCS-ID:      $Id:
+// RCS-ID:      $Id$
 // Licence:     wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
 
-/** @section propgrid_hittestresult wxPropertyGridHitTestResult
+/**
+    @section propgrid_hittestresult wxPropertyGridHitTestResult
 
     A return value from wxPropertyGrid::HitTest(),
     contains all you need to know about an arbitrary location on the grid.
@@ -99,7 +100,8 @@ wxPG_ITERATE_DEFAULT                = wxPG_ITERATE_NORMAL
 */
 
 
-/** @section propgrid_iterator_class wxPropertyGridIterator
+/**
+    @section propgrid_iterator_class wxPropertyGridIterator
 
     Preferable way to iterate through contents of wxPropertyGrid,
     wxPropertyGridManager, and wxPropertyGridPage.
@@ -117,15 +119,18 @@ public:
 
     bool AtEnd() const { return m_property == NULL; }
 
-    /** Get current property.
+    /**
+        Get current property.
     */
     wxPGProperty* GetProperty() const { return m_property; }
 
-    /** Iterate to the next property.
+    /**
+        Iterate to the next property.
     */
     void Next( bool iterateChildren = true );
 
-    /** Iterate to the previous property.
+    /**
+        Iterate to the previous property.
     */
     void Prev();
 
@@ -134,7 +139,8 @@ protected:
 
 // -----------------------------------------------------------------------
 
-/** @section propgrid_viterator_class wxPGVIterator
+/**
+    @section propgrid_viterator_class wxPGVIterator
 
     Abstract implementation of a simple iterator. Can only be used
     to iterate in forward order, and only through the entire container.