mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-09 23:34:20 +00:00
GuiApp: Remove redundant qualifications from identifiers
This commit is contained in:
parent
6f85c2c862
commit
3c75e7eeeb
1 changed files with 3 additions and 3 deletions
|
|
@ -57,8 +57,8 @@ public:
|
||||||
explicit MainWindow (juce::String name)
|
explicit MainWindow (juce::String name)
|
||||||
: DocumentWindow (name,
|
: DocumentWindow (name,
|
||||||
juce::Desktop::getInstance().getDefaultLookAndFeel()
|
juce::Desktop::getInstance().getDefaultLookAndFeel()
|
||||||
.findColour (ResizableWindow::backgroundColourId),
|
.findColour (backgroundColourId),
|
||||||
DocumentWindow::allButtons)
|
allButtons)
|
||||||
{
|
{
|
||||||
setUsingNativeTitleBar (true);
|
setUsingNativeTitleBar (true);
|
||||||
setContentOwned (new MainComponent(), true);
|
setContentOwned (new MainComponent(), true);
|
||||||
|
|
@ -78,7 +78,7 @@ public:
|
||||||
// This is called when the user tries to close this window. Here, we'll just
|
// This is called when the user tries to close this window. Here, we'll just
|
||||||
// ask the app to quit when this happens, but you can change this to do
|
// ask the app to quit when this happens, but you can change this to do
|
||||||
// whatever you need.
|
// whatever you need.
|
||||||
JUCEApplication::getInstance()->systemRequestedQuit();
|
getInstance()->systemRequestedQuit();
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Note: Be careful if you override any DocumentWindow methods - the base
|
/* Note: Be careful if you override any DocumentWindow methods - the base
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue