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:
parent
f7636fe1a3
commit
effe92f6e7
6 changed files with 14 additions and 6 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue