1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-21 16:37:12 +01:00

Make a large number of global variables static so they only have file scope when that is all they need. Part of a patch by Campbell Barton

This commit is contained in:
RichardAsh1981@gmail.com
2013-09-21 19:11:41 +00:00
parent 5523339ac5
commit 6758caa5e1
8 changed files with 16 additions and 16 deletions

View File

@@ -232,7 +232,7 @@ static void wxOnAssert(const wxChar *fileName, int lineNumber, const wxChar *msg
static wxFrame *gParentFrame = NULL;
bool gInited = false;
static bool gInited = false;
bool gIsQuitting = false;
void QuitAudacity(bool bForce)