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:
@@ -1488,7 +1488,11 @@ void wxMacMLTEControl::SetStringValue( const wxString &str)
|
|||||||
TXNFrameOptions wxMacMLTEControl::FrameOptionsFromWXStyle( long wxStyle )
|
TXNFrameOptions wxMacMLTEControl::FrameOptionsFromWXStyle( long wxStyle )
|
||||||
{
|
{
|
||||||
TXNFrameOptions frameOptions =
|
TXNFrameOptions frameOptions =
|
||||||
kTXNDontDrawCaretWhenInactiveMask | kTXNDoFontSubstitutionMask ;
|
kTXNDontDrawCaretWhenInactiveMask
|
||||||
|
#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3
|
||||||
|
| kTXNDoFontSubstitutionMask
|
||||||
|
#endif
|
||||||
|
;
|
||||||
|
|
||||||
if ( ! ( wxStyle & wxTE_NOHIDESEL ) )
|
if ( ! ( wxStyle & wxTE_NOHIDESEL ) )
|
||||||
frameOptions |= kTXNDontDrawSelectionWhenInactiveMask ;
|
frameOptions |= kTXNDontDrawSelectionWhenInactiveMask ;
|
||||||
|
Reference in New Issue
Block a user