]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/menuitem.cpp
Smooth Aqua buttons in wxTreeCtrl.
[wxWidgets.git] / src / mac / menuitem.cpp
index 153c750c4476b660df8e9d4026eb57b286702cde..33b337518ee1b9e390228a19041cd20cc7ad09bd 100644 (file)
 // headers & declarations
 // ============================================================================
 
+#include "wx/app.h"
 #include "wx/menu.h"
 #include "wx/menuitem.h"
 
-#include <wx/mac/uma.h>
+#include "wx/mac/uma.h"
 // ============================================================================
 // implementation
 // ============================================================================
@@ -41,7 +42,7 @@ void wxMacCtoPString(const char* theCString, Str255 thePString);
 
 // remove inappropriate characters, if useShortcuts is false, the ampersand will not auto-generate a mac menu-shortcut
 
-wxMenuItem::MacBuildMenuString(StringPtr outMacItemText, SInt16 *outMacShortcutChar , UInt8 *outMacModifiers , const char *inItemText , bool useShortcuts )
+int wxMenuItem::MacBuildMenuString(StringPtr outMacItemText, SInt16 *outMacShortcutChar , UInt8 *outMacModifiers , const char *inItemText , bool useShortcuts )
 {
        char *p = (char *) &outMacItemText[1] ;
        short macModifiers = 0 ;
@@ -318,7 +319,7 @@ void wxMenuItem::SetText(const wxString& text)
                {
                        Str255 label;
                        MacBuildMenuString( label , NULL , NULL , text ,false);
-                       UMASetMenuItemText( m_parentMenu->GetHMenu() , index , label ) ; // checkmark
+                       ::SetMenuItemText( m_parentMenu->GetHMenu() , index , label ) ; // checkmark
                }
        }