Compilation fixes.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24278 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
ffd82f1cf8
commit
38d6b9572c
@ -104,7 +104,7 @@ private:
|
||||
// structure describing a registry key/value
|
||||
class TreeNode : public wxTreeItemData
|
||||
{
|
||||
WX_DEFINE_ARRAY_NO_PTR(TreeNode *, TreeChildren);
|
||||
WX_DEFINE_ARRAY_PTR(TreeNode *, TreeChildren);
|
||||
public:
|
||||
RegTreeCtrl *m_pTree; // must be !NULL
|
||||
TreeNode *m_pParent; // NULL only for the root node
|
||||
|
@ -39,7 +39,7 @@
|
||||
#endif
|
||||
|
||||
class MyThread;
|
||||
WX_DEFINE_ARRAY_NO_PTR(wxThread *, wxArrayThread);
|
||||
WX_DEFINE_ARRAY_PTR(wxThread *, wxArrayThread);
|
||||
|
||||
// Define a new application type
|
||||
class MyApp : public wxApp
|
||||
|
@ -164,7 +164,7 @@ private:
|
||||
};
|
||||
|
||||
// array of pages
|
||||
WX_DEFINE_ARRAY_NO_PTR(WidgetsPage *, ArrayWidgetsPage);
|
||||
WX_DEFINE_ARRAY_PTR(WidgetsPage *, ArrayWidgetsPage);
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// misc macros
|
||||
|
Loading…
Reference in New Issue
Block a user