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