1
0
Fork 0
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:
jules 2017-11-28 17:46:15 +00:00
parent a586966c65
commit f85d706131
232 changed files with 82097 additions and 82135 deletions

View file

@ -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);