1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-03 03:30:06 +00:00

Lots of small whitespace tweaks.

This commit is contained in:
jules 2015-12-13 19:32:05 +00:00
parent 0d3afee459
commit 02492b36b9
179 changed files with 405 additions and 407 deletions

View file

@ -48,7 +48,7 @@ void DirectoryContentsDisplayComponent::removeListener (FileBrowserListener* con
void DirectoryContentsDisplayComponent::sendSelectionChangeMessage()
{
Component::BailOutChecker checker (dynamic_cast <Component*> (this));
Component::BailOutChecker checker (dynamic_cast<Component*> (this));
listeners.callChecked (checker, &FileBrowserListener::selectionChanged);
}
@ -56,7 +56,7 @@ void DirectoryContentsDisplayComponent::sendMouseClickMessage (const File& file,
{
if (fileList.getDirectory().exists())
{
Component::BailOutChecker checker (dynamic_cast <Component*> (this));
Component::BailOutChecker checker (dynamic_cast<Component*> (this));
listeners.callChecked (checker, &FileBrowserListener::fileClicked, file, e);
}
}
@ -65,7 +65,7 @@ void DirectoryContentsDisplayComponent::sendDoubleClickMessage (const File& file
{
if (fileList.getDirectory().exists())
{
Component::BailOutChecker checker (dynamic_cast <Component*> (this));
Component::BailOutChecker checker (dynamic_cast<Component*> (this));
listeners.callChecked (checker, &FileBrowserListener::fileDoubleClicked, file);
}
}