1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-11 23:54:18 +00:00

Workaround for a VS warning

This commit is contained in:
jules 2017-05-02 17:04:46 +01:00
parent 61f4333e73
commit f183a506ef

View file

@ -1247,7 +1247,7 @@ void Component::setBounds (const RelativeRectangle& newBounds)
void Component::setBounds (const String& newBoundsExpression)
{
setBounds (RelativeRectangle (newBoundsExpression));
RelativeRectangle (newBoundsExpression).applyToComponent (*this);
}
void Component::setBoundsRelative (const float x, const float y,