Skip to content

Commit 8e3f8fe

Browse files
authored
Nits.
1 parent 001ef35 commit 8e3f8fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/reaper_osara.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5665,10 +5665,10 @@ void cmdShowPeakAndLoudnessMenu(Command* command) {
56655665
int selTracks = CountSelectedTracks2(nullptr, true);
56665666
int itemCount = CountMediaItems(nullptr);
56675667
int selItems = CountSelectedMediaItems(nullptr);
5668-
bool selTracksHaveItems = doesAnySelectedTrackHaveItems();
5668+
const bool selTracksHaveItems = doesAnySelectedTrackHaveItems();
56695669
HMENU menu = CreatePopupMenu();
56705670
// Master submenu
5671-
bool nothingToDryRun = (startTS == endTS) && (countTracks == 0 || itemCount == 0);
5671+
const bool nothingToDryRun = (startTS == endTS) && (countTracks == 0 || itemCount == 0);
56725672
// Translators: An entry in OSARA's context menu for analyzing loudness statistics.
56735673
HMENU masterSub = AddSubMenu(menu, 0, "Master", !nothingToDryRun);
56745674
if (!nothingToDryRun) {

0 commit comments

Comments
 (0)