mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Fixed some MSVC warnings in Grid
This commit is contained in:
parent
fab1442ceb
commit
f1d3ac227f
2 changed files with 8 additions and 8 deletions
|
|
@ -174,12 +174,12 @@ public:
|
|||
};
|
||||
|
||||
/* TODO: move all of this into a common class that is shared with the FlexItem */
|
||||
float width = notAssigned;
|
||||
float minWidth = 0;
|
||||
float width = notAssigned;
|
||||
float minWidth = 0.0f;
|
||||
float maxWidth = notAssigned;
|
||||
|
||||
float height = notAssigned;
|
||||
float minHeight = 0;
|
||||
float height = notAssigned;
|
||||
float minHeight = 0.0f;
|
||||
float maxHeight = notAssigned;
|
||||
|
||||
/** Represents a margin. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue