Fixed a strange MSVC compile error (C2253) It thought a pure virtual

function was being defined...


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15748 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2002-06-04 20:17:44 +00:00
parent f1cf5f4de5
commit 7a944d2fd2

View File

@@ -112,7 +112,7 @@ class WXDLLEXPORT wxTreeRenameTimer: public wxTimer
public: public:
// start editing the current item after half a second (if the mouse hasn't // start editing the current item after half a second (if the mouse hasn't
// been clicked/moved) // been clicked/moved)
static const int DELAY = 500; enum { DELAY = 500 };
wxTreeRenameTimer( wxGenericTreeCtrl *owner ); wxTreeRenameTimer( wxGenericTreeCtrl *owner );
@@ -158,7 +158,7 @@ class WXDLLEXPORT wxTreeFindTimer : public wxTimer
{ {
public: public:
// reset the current prefix after half a second of inactivity // reset the current prefix after half a second of inactivity
static const int DELAY = 500; enum { DELAY = 500 };
wxTreeFindTimer( wxGenericTreeCtrl *owner ) { m_owner = owner; } wxTreeFindTimer( wxGenericTreeCtrl *owner ) { m_owner = owner; }