]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/configtool/src/property.cpp
regenerated with DESTDIR fixes
[wxWidgets.git] / utils / configtool / src / property.cpp
index edaf2e31ecddcf68357aedb1fc94fa02d7d8c7b2..d8e3c9ab88e6b07a054f44e84f91538a583811e1 100644 (file)
@@ -10,7 +10,7 @@
 // Licence:    
 /////////////////////////////////////////////////////////////////////////////
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 #pragma implementation "property.h"
 #endif
 
@@ -158,7 +158,7 @@ ctProperty* ctProperties::GetNth(int i) const
     wxASSERT( i < (int) GetCount() );
     if (i < (int) GetCount())
     {
-        wxNode* node = m_list.Nth(i);
+        wxNode* node = m_list.Item(i);
         return (ctProperty*) node->GetData();
     }
     return NULL;
@@ -229,4 +229,4 @@ void ctProperties::RemoveHiddenProperties()
         node = next;
     }
 }
-#endif
\ No newline at end of file
+#endif