]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/src/deprecated/prop.cpp
Typo correction
[wxWidgets.git] / contrib / src / deprecated / prop.cpp
index dbd1fac1042726eef54081155e4c52d7af367938..7f7d122551558775019b432a7b32a54ed0a244f3 100644 (file)
@@ -9,10 +9,6 @@
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#ifdef __GNUG__
-#pragma implementation "prop.h"
-#endif
-
 // For compilers that support precompilation, includes "wx/wx.h".
 #include "wx/wxprec.h"
 
@@ -1028,15 +1024,14 @@ bool wxPropertySheet::HasProperty(const wxString& name) const
 // Clear all properties
 void wxPropertySheet::Clear(void)
 {
-  wxObjectList::compatibility_iterator node = m_properties.GetFirst();
-  while (node)
-  {
-    wxProperty *prop = (wxProperty *)node->GetData();
-    wxObjectList::compatibility_iterator next = node->GetNext();
-    delete prop;
-    delete node;
-    node = next;
-  }
+    wxObjectList::compatibility_iterator node = m_properties.GetFirst();
+    while (node)
+    {
+        wxProperty *prop = (wxProperty *)node->GetData();
+        delete prop;
+        node = node->GetNext();
+    }
+    m_properties.Clear();
 }
 
 // Sets/clears the modified flag for each property value