// Licence:
/////////////////////////////////////////////////////////////////////////////
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma implementation "property.h"
#endif
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;
node = next;
}
}
-#endif
\ No newline at end of file
+#endif