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

Method DeleteUnusedThemes

libraries/lib-theme/Theme.cpp:1212–1221  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1210}
1211
1212void ThemeBase::DeleteUnusedThemes()
1213{
1214 auto iter = mSets.begin(), end = mSets.end();
1215 while (iter != end) {
1216 if (mpSet == &iter->second)
1217 ++iter;
1218 else
1219 iter = mSets.erase(iter);
1220 }
1221}
1222
1223wxColour & ThemeBase::Colour( int iIndex )
1224{

Callers 3

CommitMethod · 0.80
CancelMethod · 0.80
CommitMethod · 0.80

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected