From: Robin Dunn Date: Mon, 10 Jan 2000 07:21:53 +0000 (+0000) Subject: Wrong Init was being called in ctor. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/7140577b50f951b356cd07393fe970e76eeee88d Wrong Init was being called in ctor. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5323 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/msw/caret.h b/include/wx/msw/caret.h index c42da02842..1ea59e6d78 100644 --- a/include/wx/msw/caret.h +++ b/include/wx/msw/caret.h @@ -31,7 +31,7 @@ public: // same as above wxCaret(wxWindowBase *window, const wxSize& size) { - wxCaretBase::Init(); + Init(); (void)Create(window, size); }