Converted various wxArrayPtrVoids to wxVectors
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55989 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -432,7 +432,7 @@ public:
|
||||
*/
|
||||
wxPropertyGridPage* GetPage( unsigned int ind ) const
|
||||
{
|
||||
return (wxPropertyGridPage*)m_arrPages.Item(ind);
|
||||
return m_arrPages[ind];
|
||||
}
|
||||
|
||||
/** Returns page object for given page name.
|
||||
@@ -660,7 +660,7 @@ protected:
|
||||
|
||||
wxPropertyGrid* m_pPropGrid;
|
||||
|
||||
wxArrayPtrVoid m_arrPages;
|
||||
wxVector<wxPropertyGridPage*> m_arrPages;
|
||||
|
||||
#if wxUSE_TOOLBAR
|
||||
wxToolBar* m_pToolbar;
|
||||
|
Reference in New Issue
Block a user