Skip to content

Commit 6c2dc14

Browse files
committed
Clang-format errors corrected
1 parent aedd894 commit 6c2dc14

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

src/clientsettingsdlg.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class CClientSettingsDlg : public CBaseDlg, private Ui_CClientSettingsDlgBase
6060
void UpdateDisplay();
6161
void UpdateSoundDeviceChannelSelectionFrame();
6262

63-
void SetEnableFeedbackDetection ( bool enable );
63+
void SetEnableFeedbackDetection ( bool enable );
6464

6565
protected:
6666
void UpdateJitterBufferFrame();

src/main.cpp

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -662,12 +662,14 @@ int main ( int argc, char** argv )
662662

663663
if ( !strServerListFileName.isEmpty() )
664664
{
665-
qInfo() << "Note:" << "Server list persistence file will only take effect when running as a directory.";
665+
qInfo() << "Note:"
666+
<< "Server list persistence file will only take effect when running as a directory.";
666667
}
667668

668669
if ( !strServerListFilter.isEmpty() )
669670
{
670-
qInfo() << "Note:" << "Server list filter will only take effect when running as a directory.";
671+
qInfo() << "Note:"
672+
<< "Server list filter will only take effect when running as a directory.";
671673
}
672674
}
673675
else
@@ -819,7 +821,7 @@ int main ( int argc, char** argv )
819821
bIsClient = true; // Client only - TODO: maybe a switch in interface to change to server?
820822

821823
// bUseMultithreading = true;
822-
QApplication* pApp = new QApplication ( argc, argv );
824+
QApplication* pApp = new QApplication ( argc, argv );
823825
# else
824826
QCoreApplication* pApp = bUseGUI ? new QApplication ( argc, argv ) : new QCoreApplication ( argc, argv );
825827
# endif
@@ -875,7 +877,7 @@ int main ( int argc, char** argv )
875877
qWarning() << "No JSON-RPC support in this build.";
876878
}
877879
#else
878-
CRpcServer* pRpcServer = nullptr;
880+
CRpcServer* pRpcServer = nullptr;
879881

880882
if ( iJsonRpcPortNumber != INVALID_PORT )
881883
{

src/settings.h

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,12 @@ class CSettings : public QObject
6060
if ( pGApp != nullptr )
6161
{
6262
# ifndef QT_NO_SESSIONMANAGER
63-
QObject::connect ( pGApp, &QGuiApplication::saveStateRequest, this, [=] ( QSessionManager& ) { Save ( false ); }, Qt::DirectConnection );
63+
QObject::connect (
64+
pGApp,
65+
&QGuiApplication::saveStateRequest,
66+
this,
67+
[=] ( QSessionManager& ) { Save ( false ); },
68+
Qt::DirectConnection );
6469

6570
# endif
6671
QObject::connect ( pGApp, &QGuiApplication::applicationStateChanged, this, [=] ( Qt::ApplicationState state ) {

0 commit comments

Comments
 (0)