예제 #1
0
bool wxCommandProcessor::DoCommand(wxCommand& cmd)
{
    return cmd.Do();
}
예제 #2
0
bool wxCommandProcessor::UndoCommand(wxCommand& cmd)
{
    return cmd.Undo();
}
예제 #3
0
	bool MutCommandProcessor::UndoCommand(wxCommand& cmd)
	{
		DEBUGLOG(editor,_T("undoing Command: %s"),
			 (const wxChar*)cmd.GetName().c_str());
		return cmd.Undo();
	}