1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-17 16:28:13 +01:00

Fix some warnings for unused variables and labels...

... But not in cases where a return status is ignored.
This commit is contained in:
Paul Licameli
2016-09-18 10:59:50 -04:00
parent 54c993c4f5
commit 53936ac970
6 changed files with 10 additions and 10 deletions

View File

@@ -181,9 +181,9 @@ ODLock &AudacityProject::AllProjectDeleteMutex()
};
#if defined(__WXMAC__)
const int sbarSpaceWidth = 15;
const int sbarControlWidth = 16;
const int sbarExtraLen = 1;
// const int sbarSpaceWidth = 15;
// const int sbarControlWidth = 16;
// const int sbarExtraLen = 1;
const int sbarHjump = 30; //STM: This is how far the thumb jumps when the l/r buttons are pressed, or auto-scrolling occurs -- in pixels
#elif defined(__WXMSW__)
const int sbarSpaceWidth = 16;
@@ -414,7 +414,7 @@ public:
bool OnDrop(wxCoord x, wxCoord y) override
{
bool foundSupported = false;
// bool foundSupported = false;
#if !wxCHECK_VERSION(3, 0, 0)
bool firstFileAdded = false;
OSErr result;