]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/accel.h
Fix wrong return value in the changes of r73365.
[wxWidgets.git] / interface / wx / accel.h
index 580d30033d1ec7962ed0e5272c955e92a9f3c504..4dcc6fa3d22b577f924c40170315444d377a65ee 100644 (file)
@@ -108,12 +108,26 @@ public:
     /**
         Returns a textual representation of this accelerator.
 
-        The returned string is of the form <code>[Alt+][Ctrl+][Shift+]Key</code>
+        The returned string is of the form <code>[Alt+][Ctrl+][RawCtrl+][Shift+]Key</code>
         where the modifier keys are present only if the corresponding flag is
         set.
     */
     wxString ToString() const;
 
+    /**
+        Returns a textual representation of this accelerator which is
+        appropriate for saving in configuration files.
+
+        Unlike the string returned by ToString(), this one is never translated
+        so, while it's not suitable for showing to the user, it can be used to
+        uniquely identify the accelerator independently of the user language.
+
+        The returned string can still be parsed by FromString().
+
+        @since 2.9.4
+    */
+    wxString ToRawString() const;
+
     /**
         Parses the given string and sets the accelerator accordingly.