From: Vadim Zeitlin Date: Fri, 22 Aug 2003 22:00:29 +0000 (+0000) Subject: fixed text control creation broken by my MacPreControlCreate() change X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f6f0900d306c28ab5736b372e19333d99d786c9b?ds=inline fixed text control creation broken by my MacPreControlCreate() change git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23115 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/mac/carbon/textctrl.cpp b/src/mac/carbon/textctrl.cpp index b79f2fc5d3..a289930a71 100644 --- a/src/mac/carbon/textctrl.cpp +++ b/src/mac/carbon/textctrl.cpp @@ -680,7 +680,7 @@ bool wxTextCtrl::Create(wxWindow *parent, wxWindowID id, m_macUsesTXN &= (TXNInitTextension != (void*) kUnresolvedCFragSymbolAddress) ; // base initialization - if ( !CreateBase(parent, id, pos, size, style, validator, name) ) + if ( !wxTextCtrlBase::Create(parent, id, pos, size, style, validator, name) ) return FALSE; wxSize mySize = size ; diff --git a/src/mac/textctrl.cpp b/src/mac/textctrl.cpp index b79f2fc5d3..a289930a71 100644 --- a/src/mac/textctrl.cpp +++ b/src/mac/textctrl.cpp @@ -680,7 +680,7 @@ bool wxTextCtrl::Create(wxWindow *parent, wxWindowID id, m_macUsesTXN &= (TXNInitTextension != (void*) kUnresolvedCFragSymbolAddress) ; // base initialization - if ( !CreateBase(parent, id, pos, size, style, validator, name) ) + if ( !wxTextCtrlBase::Create(parent, id, pos, size, style, validator, name) ) return FALSE; wxSize mySize = size ;