1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-07 04:01:54 +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:30:00 +00:00
parent eee032648e
commit 61de872bf2
5 changed files with 10 additions and 10 deletions

View File

@@ -44,9 +44,9 @@
#include "Prefs.h"
#include "Dither.h"
Dither::DitherType gLowQualityDither = Dither::none;
Dither::DitherType gHighQualityDither = Dither::none;
Dither gDitherAlgorithm;
static Dither::DitherType gLowQualityDither = Dither::none;
static Dither::DitherType gHighQualityDither = Dither::none;
static Dither gDitherAlgorithm;
void InitDitherers()
{