]> git.saurik.com Git - wxWidgets.git/commitdiff
corrected initialization order of MLTE
authorStefan Csomor <csomor@advancedconcepts.ch>
Mon, 20 May 2002 14:06:09 +0000 (14:06 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Mon, 20 May 2002 14:06:09 +0000 (14:06 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15610 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/uma.cpp
src/mac/uma.cpp

index 9e84f4d9e95723fff5b77d5bd13afe46eac60c96..f6bd01f91f09360764787645054b9a3b3b78ec73 100644 (file)
@@ -104,6 +104,11 @@ void UMAInitToolbox( UInt16 inMoreMastersCalls )
                NavLoad() ;
        }
 
+  long menuMgrAttr ;
+  Gestalt( gestaltMenuMgrAttr , &menuMgrAttr ) ;
+  if ( menuMgrAttr & gestaltMenuMgrAquaLayoutMask )
+    sUMAHasAquaLayout = true ;
+
   if ( TXNInitTextension != (void*) kUnresolvedCFragSymbolAddress )
   { 
     FontFamilyID fontId ;
@@ -132,10 +137,7 @@ void UMAInitToolbox( UInt16 inMoreMastersCalls )
        TXNInitTextension(fontDescriptions,  noOfFontDescriptions, options );
   }
 
-  long menuMgrAttr ;
-  Gestalt( gestaltMenuMgrAttr , &menuMgrAttr ) ;
-  if ( menuMgrAttr & gestaltMenuMgrAquaLayoutMask )
-    sUMAHasAquaLayout = true ;
+
   sUMASystemInitialized = true ;
 
 }
index 9e84f4d9e95723fff5b77d5bd13afe46eac60c96..f6bd01f91f09360764787645054b9a3b3b78ec73 100644 (file)
@@ -104,6 +104,11 @@ void UMAInitToolbox( UInt16 inMoreMastersCalls )
                NavLoad() ;
        }
 
+  long menuMgrAttr ;
+  Gestalt( gestaltMenuMgrAttr , &menuMgrAttr ) ;
+  if ( menuMgrAttr & gestaltMenuMgrAquaLayoutMask )
+    sUMAHasAquaLayout = true ;
+
   if ( TXNInitTextension != (void*) kUnresolvedCFragSymbolAddress )
   { 
     FontFamilyID fontId ;
@@ -132,10 +137,7 @@ void UMAInitToolbox( UInt16 inMoreMastersCalls )
        TXNInitTextension(fontDescriptions,  noOfFontDescriptions, options );
   }
 
-  long menuMgrAttr ;
-  Gestalt( gestaltMenuMgrAttr , &menuMgrAttr ) ;
-  if ( menuMgrAttr & gestaltMenuMgrAquaLayoutMask )
-    sUMAHasAquaLayout = true ;
+
   sUMASystemInitialized = true ;
 
 }