1
0
Fork 0
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:
ed 2019-08-30 21:04:39 +01:00
parent fab1442ceb
commit f1d3ac227f
2 changed files with 8 additions and 8 deletions

View file

@ -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. */