]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/ctrlcmn.cpp
always properly check if SeekI() calls succeded; this makes CanRead() functions of...
[wxWidgets.git] / src / common / ctrlcmn.cpp
index 1897047aa0cc9d72824a898d5183eda93fede60c..8cb01a3adb253be0c0b5fdc94ad2a85257e01f6d 100644 (file)
@@ -159,6 +159,14 @@ wxString wxControlBase::RemoveMnemonics(const wxString& str)
     return wxStripMenuCodes(str, wxStrip_Mnemonics);
 }
 
+/* static */
+wxString wxControlBase::EscapeMnemonics(const wxString& text)
+{
+    wxString label(text);
+    label.Replace("&", "&&");
+    return label;
+}
+
 /* static */
 int wxControlBase::FindAccelIndex(const wxString& label, wxString *labelOnly)
 {