add const qualifiers
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52414 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -126,37 +126,37 @@ public:
|
||||
/**
|
||||
Returns the list of commands.
|
||||
*/
|
||||
wxList GetCommands();
|
||||
wxList GetCommands() const;
|
||||
|
||||
/**
|
||||
Returns the edit menu associated with the command processor.
|
||||
*/
|
||||
wxMenu* GetEditMenu();
|
||||
wxMenu* GetEditMenu() const;
|
||||
|
||||
/**
|
||||
Returns the maximum number of commands that the command processor stores.
|
||||
*/
|
||||
int GetMaxCommands();
|
||||
int GetMaxCommands() const;
|
||||
|
||||
/**
|
||||
Returns the string that will be appended to the Redo menu item.
|
||||
*/
|
||||
const wxString GetRedoAccelerator();
|
||||
const wxString GetRedoAccelerator() const;
|
||||
|
||||
/**
|
||||
Returns the string that will be shown for the redo menu item.
|
||||
*/
|
||||
wxString GetRedoMenuLabel();
|
||||
wxString GetRedoMenuLabel() const;
|
||||
|
||||
/**
|
||||
Returns the string that will be appended to the Undo menu item.
|
||||
*/
|
||||
const wxString GetUndoAccelerator();
|
||||
const wxString GetUndoAccelerator() const;
|
||||
|
||||
/**
|
||||
Returns the string that will be shown for the undo menu item.
|
||||
*/
|
||||
wxString GetUndoMenuLabel();
|
||||
wxString GetUndoMenuLabel() const;
|
||||
|
||||
/**
|
||||
Initializes the command processor, setting the current command to the
|
||||
|
Reference in New Issue
Block a user