1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-16 07:47:58 +01:00

Regularize casts as (int), so they are easier to find and review

This commit is contained in:
Paul Licameli
2016-09-20 08:26:42 -04:00
parent 8e1b084f01
commit f993f1eadf
24 changed files with 105 additions and 105 deletions

View File

@@ -288,7 +288,7 @@ const UndoState &UndoManager::SetStateTo
current = n;
if (current == int(stack.size()-1)) {
if (current == (int)(stack.size()-1)) {
*selectedRegion = stack[current]->state.selectedRegion;
}
else {