]> git.saurik.com Git - wxWidgets.git/commitdiff
kTXNDoFontSubstitutionMask requires OS X 10.3 (undefined symbol on < 10.3)
authorKevin Hock <hockkn@yahoo.com>
Sun, 10 Apr 2005 04:36:47 +0000 (04:36 +0000)
committerKevin Hock <hockkn@yahoo.com>
Sun, 10 Apr 2005 04:36:47 +0000 (04:36 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33462 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/textctrl.cpp

index 9397ea6acde5f8c5f63cb8fb76ce9b7049de3acd..baa26ddc54c026003b2359a80102fec8d57849ef 100644 (file)
@@ -1488,7 +1488,11 @@ void wxMacMLTEControl::SetStringValue( const wxString &str)
 TXNFrameOptions wxMacMLTEControl::FrameOptionsFromWXStyle( long wxStyle )
 {
     TXNFrameOptions frameOptions =
 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 ;
 
     if ( ! ( wxStyle & wxTE_NOHIDESEL ) )
         frameOptions |= kTXNDontDrawSelectionWhenInactiveMask ;