[libcalamaresui] Apply coding style

This commit is contained in:
Adriaan de Groot 2020-05-01 10:01:24 +02:00
parent 8af17fafe1
commit 0e71957b74
14 changed files with 15 additions and 15 deletions

View File

@ -98,7 +98,7 @@ ProcessJobModule::ProcessJobModule()
}
ProcessJobModule::~ProcessJobModule() {}
ProcessJobModule::~ProcessJobModule() { }
} // namespace Calamares

View File

@ -80,7 +80,7 @@ PythonJobModule::PythonJobModule()
}
PythonJobModule::~PythonJobModule() {}
PythonJobModule::~PythonJobModule() { }
} // namespace Calamares

View File

@ -188,6 +188,6 @@ PythonQtViewModule::PythonQtViewModule()
{
}
PythonQtViewModule::~PythonQtViewModule() {}
PythonQtViewModule::~PythonQtViewModule() { }
} // namespace Calamares

View File

@ -40,7 +40,7 @@ ImageRegistry::instance()
}
ImageRegistry::ImageRegistry() {}
ImageRegistry::ImageRegistry() { }
QIcon

View File

@ -71,14 +71,14 @@ addExpansions( QmlSearch method, QStringList& candidates, const QStringList& nam
std::transform( names.constBegin(),
names.constEnd(),
std::back_inserter( candidates ),
[&]( const QString& s ) { return s.isEmpty() ? QString() : bPath.arg( brandDir, s ); } );
[ & ]( const QString& s ) { return s.isEmpty() ? QString() : bPath.arg( brandDir, s ); } );
}
if ( ( method == QmlSearch::Both ) || ( method == QmlSearch::QrcOnly ) )
{
std::transform( names.constBegin(),
names.constEnd(),
std::back_inserter( candidates ),
[&]( const QString& s ) { return s.isEmpty() ? QString() : qrPath.arg( s ); } );
[ & ]( const QString& s ) { return s.isEmpty() ? QString() : qrPath.arg( s ); } );
}
}

View File

@ -62,7 +62,7 @@ BlankViewStep::BlankViewStep( const QString& title,
m_widget->setLayout( layout );
}
BlankViewStep::~BlankViewStep() {}
BlankViewStep::~BlankViewStep() { }
QString
BlankViewStep::prettyName() const

View File

@ -40,7 +40,7 @@ class GlobalStorage : public QObject
Q_OBJECT
public:
explicit GlobalStorage( Calamares::GlobalStorage* gs );
virtual ~GlobalStorage() {}
virtual ~GlobalStorage() { }
public slots:
bool contains( const QString& key ) const;

View File

@ -44,7 +44,7 @@ class PythonQtJob : public Calamares::Job
{
Q_OBJECT
public:
virtual ~PythonQtJob() {}
virtual ~PythonQtJob() { }
QString prettyName() const override;
QString prettyDescription() const override;

View File

@ -33,7 +33,7 @@ class Utils : public QObject
Q_OBJECT
public:
explicit Utils( QObject* parent = nullptr );
virtual ~Utils() {}
virtual ~Utils() { }
public slots:
void debug( const QString& s ) const;

View File

@ -88,7 +88,7 @@ QmlViewStep::QmlViewStep( QObject* parent )
// QML Loading starts when the configuration for the module is set.
}
QmlViewStep::~QmlViewStep() {}
QmlViewStep::~QmlViewStep() { }
QString
QmlViewStep::prettyName() const

View File

@ -28,7 +28,7 @@ ViewStep::ViewStep( QObject* parent )
}
ViewStep::~ViewStep() {}
ViewStep::~ViewStep() { }
QString

View File

@ -20,8 +20,8 @@
#ifndef VIEWSTEP_H
#define VIEWSTEP_H
#include "Job.h"
#include "DllMacro.h"
#include "Job.h"
#include "modulesystem/InstanceKey.h"
#include "modulesystem/Requirement.h"

View File

@ -33,7 +33,7 @@ ClickableLabel::ClickableLabel( const QString& text, QWidget* parent )
}
ClickableLabel::~ClickableLabel() {}
ClickableLabel::~ClickableLabel() { }
void

View File

@ -26,7 +26,7 @@ FixedAspectRatioLabel::FixedAspectRatioLabel( QWidget* parent )
}
FixedAspectRatioLabel::~FixedAspectRatioLabel() {}
FixedAspectRatioLabel::~FixedAspectRatioLabel() { }
void