| 787 | } |
| 788 | |
| 789 | void MacroCommands::DeleteFromMacro(int index) |
| 790 | { |
| 791 | if (index < 0 || index >= (int)mCommandMacro.size()) { |
| 792 | return; |
| 793 | } |
| 794 | |
| 795 | mCommandMacro.erase( mCommandMacro.begin() + index ); |
| 796 | mParamsMacro.erase( mParamsMacro.begin() + index ); |
| 797 | } |
| 798 | |
| 799 | void MacroCommands::ResetMacro() |
| 800 | { |