kTXNDoFontSubstitutionMask requires OS X 10.3 (undefined symbol on < 10.3)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33462 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
1a3c509512
commit
b7e28620c2
@ -1488,7 +1488,11 @@ void wxMacMLTEControl::SetStringValue( const wxString &str)
|
||||
TXNFrameOptions wxMacMLTEControl::FrameOptionsFromWXStyle( long wxStyle )
|
||||
{
|
||||
TXNFrameOptions frameOptions =
|
||||
kTXNDontDrawCaretWhenInactiveMask | kTXNDoFontSubstitutionMask ;
|
||||
kTXNDontDrawCaretWhenInactiveMask
|
||||
#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3
|
||||
| kTXNDoFontSubstitutionMask
|
||||
#endif
|
||||
;
|
||||
|
||||
if ( ! ( wxStyle & wxTE_NOHIDESEL ) )
|
||||
frameOptions |= kTXNDontDrawSelectionWhenInactiveMask ;
|
||||
|
Loading…
Reference in New Issue
Block a user