mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Spelling fix.
This commit is contained in:
parent
b6c5194f93
commit
0bf1862ec6
1 changed files with 3 additions and 3 deletions
|
|
@ -659,7 +659,7 @@ void Component::addToDesktop (int styleWanted, void* nativeWindowToAttachTo)
|
|||
|
||||
bool wasFullscreen = false;
|
||||
bool wasMinimised = false;
|
||||
ComponentBoundsConstrainer* currentConstainer = nullptr;
|
||||
ComponentBoundsConstrainer* currentConstrainer = nullptr;
|
||||
Rectangle<int> oldNonFullScreenBounds;
|
||||
int oldRenderingEngine = -1;
|
||||
|
||||
|
|
@ -669,7 +669,7 @@ void Component::addToDesktop (int styleWanted, void* nativeWindowToAttachTo)
|
|||
|
||||
wasFullscreen = peer->isFullScreen();
|
||||
wasMinimised = peer->isMinimised();
|
||||
currentConstainer = peer->getConstrainer();
|
||||
currentConstrainer = peer->getConstrainer();
|
||||
oldNonFullScreenBounds = peer->getNonFullScreenBounds();
|
||||
oldRenderingEngine = peer->getCurrentRenderingEngine();
|
||||
|
||||
|
|
@ -720,7 +720,7 @@ void Component::addToDesktop (int styleWanted, void* nativeWindowToAttachTo)
|
|||
peer->setAlwaysOnTop (true);
|
||||
#endif
|
||||
|
||||
peer->setConstrainer (currentConstainer);
|
||||
peer->setConstrainer (currentConstrainer);
|
||||
|
||||
repaint();
|
||||
internalHierarchyChanged();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue