]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/menu.cpp
Compile fix for GTK 1.0
[wxWidgets.git] / src / gtk / menu.cpp
index 6907fe1d684178cf59daa4129d6c83f104e2e24d..fd67e5ee803f1de0d7f934f924ec7ce7c1b94094 100644 (file)
@@ -488,9 +488,9 @@ void wxMenuItem::SetName( const wxString& str )
 #if (GTK_MINOR_VERSION > 0)
             m_text << _T('_');
         } else 
-       if (*pc == _T('/'))
+       if (*pc == _T('/'))      /* we have to filter out slashes ... */
        {
-            m_text << _T('\\');
+            m_text << _T('\\');  /* ... and replace them with back slashes */
 #endif
         }
         else
@@ -677,6 +677,12 @@ void wxMenu::Append( int id, const wxString &item, const wxString &helpStr, bool
                entry.accelerator = hotbuf;
               break;
            }
+           case _T('F'):   /* function keys */
+           {
+              strcpy( hotbuf, hotkey.mb_str() );
+               entry.accelerator = hotbuf;
+              break;
+           }
            default:
            {
            }