1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-03 03:30:06 +00:00

Fix for some MSVC compile problems and warnings.

This commit is contained in:
Julian Storer 2010-02-04 18:42:02 +00:00
parent f7636fe1a3
commit effe92f6e7
6 changed files with 14 additions and 6 deletions

View file

@ -122,7 +122,7 @@ public:
bool enabled = deviceManager.isMidiInputEnabled (item);
const int x = getTickX();
const int tickW = height - height / 4;
const float tickW = height * 0.75f;
getLookAndFeel().drawTickBox (g, *this, x - tickW, (height - tickW) / 2, tickW, tickW,
enabled, true, true, false);
@ -783,7 +783,7 @@ public:
}
const int x = getTickX();
const int tickW = height - height / 4;
const float tickW = height * 0.75f;
getLookAndFeel().drawTickBox (g, *this, x - tickW, (height - tickW) / 2, tickW, tickW,
enabled, true, true, false);