Wrong Init was being called in ctor.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5323 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2000-01-10 07:21:53 +00:00
parent 81b92e17cd
commit 7140577b50

View File

@ -31,7 +31,7 @@ public:
// same as above
wxCaret(wxWindowBase *window, const wxSize& size)
{
wxCaretBase::Init();
Init();
(void)Create(window, size);
}