mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-31 03:00:05 +00:00
Some minor formatting and comment fixes
This commit is contained in:
parent
a586966c65
commit
f85d706131
232 changed files with 82097 additions and 82135 deletions
|
|
@ -144,14 +144,16 @@ public:
|
|||
};
|
||||
|
||||
//==============================================================================
|
||||
class VoiceModel : public ListBoxModel
|
||||
class VoiceModel : public ListBoxModel
|
||||
{
|
||||
public:
|
||||
//==============================================================================
|
||||
class VoiceRow : public Component, private Button::Listener, private Timer
|
||||
class VoiceRow : public Component,
|
||||
private Button::Listener,
|
||||
private Timer
|
||||
{
|
||||
public:
|
||||
VoiceRow () : voices (getInstance()->getPurchases().getVoiceNames())
|
||||
VoiceRow() : voices (getInstance()->getPurchases().getVoiceNames())
|
||||
{
|
||||
addAndMakeVisible (nameLabel);
|
||||
addAndMakeVisible (purchaseButton);
|
||||
|
|
@ -377,10 +379,10 @@ public:
|
|||
class MainWindow : public DocumentWindow
|
||||
{
|
||||
public:
|
||||
MainWindow () : DocumentWindow (ProjectInfo::projectName,
|
||||
Desktop::getInstance().getDefaultLookAndFeel()
|
||||
.findColour (ResizableWindow::backgroundColourId),
|
||||
DocumentWindow::allButtons)
|
||||
MainWindow() : DocumentWindow (ProjectInfo::projectName,
|
||||
Desktop::getInstance().getDefaultLookAndFeel()
|
||||
.findColour (ResizableWindow::backgroundColourId),
|
||||
DocumentWindow::allButtons)
|
||||
{
|
||||
setUsingNativeTitleBar (true);
|
||||
setContentOwned (new MainContentComponent(), true);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue