mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Made the x and y members public in the Point class.
This commit is contained in:
parent
115a171d76
commit
34840062ef
32 changed files with 215 additions and 215 deletions
|
|
@ -99,7 +99,7 @@ void BubbleComponent::setPosition (Component* componentToPointTo)
|
|||
else
|
||||
pos = componentToPointTo->localPointToGlobal (pos);
|
||||
|
||||
setPosition (Rectangle<int> (pos.getX(), pos.getY(), componentToPointTo->getWidth(), componentToPointTo->getHeight()));
|
||||
setPosition (Rectangle<int> (pos.x, pos.y, componentToPointTo->getWidth(), componentToPointTo->getHeight()));
|
||||
}
|
||||
|
||||
void BubbleComponent::setPosition (const int arrowTipX_,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue