]> git.saurik.com Git - wxWidgets.git/commitdiff
fix some parameters docs and other minor changes (#9557)
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 11 Jun 2008 00:03:20 +0000 (00:03 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 11 Jun 2008 00:03:20 +0000 (00:03 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@54085 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/menu.h

index 17cea85ad47cb35c0cdc2de355f85e018a28652f..e74a637a0342dd7f58119c2c8ec79c5cc1a07c5b 100644 (file)
@@ -15,7 +15,7 @@
     @library{wxcore}
     @category{menus}
 
-    @see wxMenu, @ref overview_eventhandlingoverview
+    @see wxMenu, @ref overview_eventhandling "Event Handling Overview"
 */
 class wxMenuBar : public wxWindow
 {
@@ -390,8 +390,9 @@ public:
     @library{wxcore}
     @category{menus}
 
-    @see wxMenuBar, wxWindow::PopupMenu, @ref overview_eventhandlingoverview, @ref
-    overview_wxfilehistory "wxFileHistory (most recently used files menu)"
+    @see wxMenuBar, wxWindow::PopupMenu,
+    @ref overview_eventhandling "Event Handling Overview",
+    @ref wxFileHistory "wxFileHistory (most recently used files menu)"
 */
 class wxMenu : public wxEvtHandler
 {
@@ -432,30 +433,32 @@ public:
             The menu command identifier.
         @param item
             The string to appear on the menu item.
-        @param kind
-            May be wxITEM_SEPARATOR, wxITEM_NORMAL,
-            wxITEM_CHECK or wxITEM_RADIO
         @param helpString
             An optional help string associated with the item.
             By default, the handler for the wxEVT_MENU_HIGHLIGHT event displays
             this string in the status line.
+        @param kind
+            May be wxITEM_SEPARATOR, wxITEM_NORMAL,
+            wxITEM_CHECK or wxITEM_RADIO
 
         @see AppendSeparator(), AppendCheckItem(), AppendRadioItem(),
              AppendSubMenu(), Insert(), SetLabel(),
              GetHelpString(), SetHelpString(), wxMenuItem
     */
-    wxMenuItem* Append(int id, const wxString& item = "",
-                       const wxString& helpString = "",
+    wxMenuItem* Append(int id, const wxString& item = wxEmptyString,
+                       const wxString& helpString = wxEmptyString,
                        wxItemKind kind = wxITEM_NORMAL);
                        
     /**
         Adds a submenu.
 
+        @warning This function is deprecated, use AppendSubMenu() instead.
+
         @param id
             The menu command identifier.
         @param item
             The string to appear on the menu item.
-        @param menu
+        @param subMenu
             Pull-right submenu.
         @param helpString
             An optional help string associated with the item.
@@ -468,7 +471,7 @@ public:
     */
     wxMenuItem* Append(int id, const wxString& item,
                        wxMenu* subMenu,
-                       const wxString& helpString = "");
+                       const wxString& helpString = wxEmptyString);
                        
     /**
         Adds a menu item object. This is the most generic variant of Append() method