| 101 | } |
| 102 | |
| 103 | CommandID MacroCommands::GetCommand(int index) |
| 104 | { |
| 105 | if (index < 0 || index >= (int)mCommandMacro.size()) { |
| 106 | return wxT(""); |
| 107 | } |
| 108 | |
| 109 | return mCommandMacro[index]; |
| 110 | } |
| 111 | |
| 112 | wxString MacroCommands::GetParams(int index) |
| 113 | { |
no test coverage detected