summaryrefslogtreecommitdiffhomepage
path: root/gui
diff options
context:
space:
mode:
Diffstat (limited to 'gui')
-rw-r--r--gui/options-dialog.cpp2
-rw-r--r--gui/process_detector.cpp6
2 files changed, 4 insertions, 4 deletions
diff --git a/gui/options-dialog.cpp b/gui/options-dialog.cpp
index 814cf298..c6e6dd97 100644
--- a/gui/options-dialog.cpp
+++ b/gui/options-dialog.cpp
@@ -104,7 +104,7 @@ OptionsDialog::OptionsDialog(std::function<void(bool)> pause_keybindings) :
val.label,
[=](const QString&) -> void { val.label->setText(kopts_to_string(val.opt)); });
{
- connect(val.button, &QPushButton::pressed, this, [=]() -> void { bind_key(val.opt, val.label); });
+ connect(val.button, &QPushButton::clicked, this, [=]() -> void { bind_key(val.opt, val.label); });
}
}
diff --git a/gui/process_detector.cpp b/gui/process_detector.cpp
index f0a66fa5..1a5cbb9d 100644
--- a/gui/process_detector.cpp
+++ b/gui/process_detector.cpp
@@ -88,7 +88,7 @@ int process_detector::add_row(QString exe_name, QString profile)
{
BrowseButton* b = new BrowseButton(twi);
b->setText("...");
- QObject::connect(b, SIGNAL(pressed()), b, SLOT(browse()));
+ QObject::connect(b, SIGNAL(clicked()), b, SLOT(browse()));
ui.tableWidget->setCellWidget(i, 2, b);
}
@@ -111,8 +111,8 @@ process_detector::process_detector(QWidget* parent) : QWidget(parent)
{
ui.setupUi(this);
setFixedSize(size());
- connect(ui.add, SIGNAL(pressed()), this, SLOT(add()));
- connect(ui.remove, SIGNAL(pressed()), this, SLOT(remove()));
+ connect(ui.add, SIGNAL(clicked()), this, SLOT(add()));
+ connect(ui.remove, SIGNAL(clicked()), this, SLOT(remove()));
add_items();