MCPcopy Create free account
hub / github.com/audacity/audacity / DeleteFromMacro

Method DeleteFromMacro

src/BatchCommands.cpp:789–797  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

787}
788
789void 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
799void MacroCommands::ResetMacro()
800{

Callers 4

OnEditCommandParamsMethod · 0.80
OnDeleteMethod · 0.80
OnUpMethod · 0.80
OnDownMethod · 0.80

Calls 2

sizeMethod · 0.45
beginMethod · 0.45

Tested by

no test coverage detected