mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Formatting
This commit is contained in:
parent
ff0cb4ad5b
commit
4153d59e39
279 changed files with 1281 additions and 1281 deletions
|
|
@ -99,8 +99,8 @@ public:
|
|||
|
||||
private:
|
||||
//==============================================================================
|
||||
Label helloWorldLabel { {}, TRANS("Hello World!") };
|
||||
TextButton quitButton { TRANS("Quit") };
|
||||
Label helloWorldLabel { {}, TRANS ("Hello World!") };
|
||||
TextButton quitButton { TRANS ("Quit") };
|
||||
Path internalPath;
|
||||
|
||||
//==============================================================================
|
||||
|
|
|
|||
|
|
@ -1281,7 +1281,7 @@ private:
|
|||
shader.reset (newShader.release());
|
||||
shader->use();
|
||||
|
||||
shape .reset (new OpenGLUtils::Shape ());
|
||||
shape .reset (new OpenGLUtils::Shape());
|
||||
attributes.reset (new OpenGLUtils::Attributes (*shader));
|
||||
uniforms .reset (new OpenGLUtils::Uniforms (*shader));
|
||||
|
||||
|
|
|
|||
|
|
@ -543,7 +543,7 @@ private:
|
|||
|
||||
curVideoComp->onPlaybackStarted = [this]() { processPlaybackStarted(); };
|
||||
curVideoComp->onPlaybackStopped = [this]() { processPlaybackPaused(); };
|
||||
curVideoComp->onErrorOccurred = [this](const String& errorMessage) { errorOccurred (errorMessage); };
|
||||
curVideoComp->onErrorOccurred = [this] (const String& errorMessage) { errorOccurred (errorMessage); };
|
||||
curVideoComp->setVisible (true);
|
||||
|
||||
#if JUCE_SYNC_VIDEO_VOLUME_WITH_OS_MEDIA_VOLUME
|
||||
|
|
|
|||
|
|
@ -229,7 +229,7 @@ struct SlidersPage final : public Component
|
|||
|
||||
for (int i = 8; i <= 11; ++i)
|
||||
{
|
||||
auto* selectedSlider = sliders.getUnchecked(i);
|
||||
auto* selectedSlider = sliders.getUnchecked (i);
|
||||
selectedSlider->setTextBoxStyle (Slider::NoTextBox, false, 0, 0);
|
||||
selectedSlider->getMaxValueObject().referTo (sharedValueMax);
|
||||
selectedSlider->getMinValueObject().referTo (sharedValueMin);
|
||||
|
|
@ -1133,7 +1133,7 @@ public:
|
|||
|
||||
String getText (const int columnNumber, const int rowNumber) const
|
||||
{
|
||||
return dataList->getChildElement (rowNumber)->getStringAttribute ( getAttributeNameForColumnId(columnNumber));
|
||||
return dataList->getChildElement (rowNumber)->getStringAttribute (getAttributeNameForColumnId (columnNumber));
|
||||
}
|
||||
|
||||
void setText (const int columnNumber, const int rowNumber, const String& newText)
|
||||
|
|
@ -1188,7 +1188,7 @@ private:
|
|||
{
|
||||
row = newRow;
|
||||
columnId = newColumn;
|
||||
setText (owner.getText(columnId, row), dontSendNotification);
|
||||
setText (owner.getText (columnId, row), dontSendNotification);
|
||||
}
|
||||
|
||||
void paint (Graphics& g) override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue