| 110 | } |
| 111 | |
| 112 | wxString MacroCommands::GetParams(int index) |
| 113 | { |
| 114 | if (index < 0 || index >= (int)mParamsMacro.size()) { |
| 115 | return wxT(""); |
| 116 | } |
| 117 | |
| 118 | return mParamsMacro[index]; |
| 119 | } |
| 120 | |
| 121 | int MacroCommands::GetCount() |
| 122 | { |
no test coverage detected