Skip to content

Commit

Permalink
indentation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sima-fastly committed Nov 21, 2023
1 parent 1416f9e commit 07a5275
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/cpp/handler/handlerapp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ class HandlerApp::Private : public QObject
engine(0)
{
quitConnection = ProcessQuit::instance()->quit.connect(boost::bind(&Private::doQuit, this));
hupConnection = ProcessQuit::instance()->hup.connect(boost::bind(&Private::reload, this));
hupConnection = ProcessQuit::instance()->hup.connect(boost::bind(&Private::reload, this));
}

void start()
Expand Down
2 changes: 1 addition & 1 deletion src/cpp/handler/handlermain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ int handler_main(int argc, char **argv)
{
QCoreApplication qapp(argc, argv);

HandlerAppMain appMain;
HandlerAppMain appMain;
QTimer::singleShot(0, [&appMain]() {appMain.start();});
return qapp.exec();
}
Expand Down
2 changes: 1 addition & 1 deletion src/cpp/m2adapter/m2adapterapp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ class M2AdapterApp::Private : public QObject
currentSessionRefreshBucket(0),
zhttpCancelMeter(0)
{
quitConnection = ProcessQuit::instance()->quit.connect(std::bind(&Private::doQuit, this));
quitConnection = ProcessQuit::instance()->quit.connect(boost::bind(&Private::doQuit, this));
hupConnection = ProcessQuit::instance()->hup.connect(boost::bind(&M2AdapterApp::Private::reload, this));

statusTimer = new QTimer(this);
Expand Down

0 comments on commit 07a5275

Please sign in to comment.