1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-17 00:44:19 +00:00

Projucer: Fixed a few uninitialised variables

This commit is contained in:
ed 2017-08-14 11:31:06 +01:00
parent 2fbbb59fef
commit 6b315c4e15

View file

@ -163,8 +163,8 @@ private:
void setEditorColourScheme (int index, bool saveSetting);
void updateEditorColourSchemeIfNeeded();
int selectedColourSchemeIndex;
int selectedColourSchemeIndex = 0;
int selectedEditorColourSchemeIndex;
int numEditorColourSchemes;
int selectedEditorColourSchemeIndex = 0;
int numEditorColourSchemes = 0;
};