summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristoph Schulthess2017-03-22 16:57:36 +0100
committerChristoph Schulthess2017-03-22 16:57:36 +0100
commitd6fabe372ee7b774e487313e1c83586310082c46 (patch)
tree26d154099dc4acb07785f2126889a0e0aa9f1413
parentchanged signal (diff)
downloadpvs2-d6fabe372ee7b774e487313e1c83586310082c46.tar.gz
pvs2-d6fabe372ee7b774e487313e1c83586310082c46.tar.xz
pvs2-d6fabe372ee7b774e487313e1c83586310082c46.zip
minor fix
-rw-r--r--src/client/toolbar/toolbar.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/toolbar/toolbar.cpp b/src/client/toolbar/toolbar.cpp
index 631e6c5..b15c536 100644
--- a/src/client/toolbar/toolbar.cpp
+++ b/src/client/toolbar/toolbar.cpp
@@ -109,7 +109,7 @@ void Toolbar::init()
connect(clientApp->connectWindow(), SIGNAL(connected(ServerConnection*)), this, SLOT(onConnected(ServerConnection*)));
connect(_ui->btnManager, SIGNAL(toggled(bool)), this, SLOT(onBtnManager()));
connect(_ui->btnAttention, SIGNAL(toggled(bool)), this, SLOT(onBtnAttention()));
- connect(_ui->btnCustom, SIGNAL(clicked), this, SLOT(onBtnCustom()));
+ connect(_ui->btnCustom, SIGNAL(clicked()), this, SLOT(onBtnCustom()));
/* Setup menu */
initMenu();