summaryrefslogtreecommitdiffhomepage
path: root/tracker-test/test.cpp
diff options
context:
space:
mode:
authorStanisław Halik <sthalik@misaki.pl>2017-05-14 16:22:09 +0200
committerGitHub <noreply@github.com>2017-05-14 16:22:09 +0200
commit5c23666b58bb1dd4aea15c0d62a2f716d5be7f52 (patch)
treee6497e9b55c073be209ec673ef05e62bf57a2c8f /tracker-test/test.cpp
parent4701dd3b0c8323a11cf7d5ad09c579a9864a41bd (diff)
parentc392181211b245e74292424500265323c960c1aa (diff)
Merge branch 'unstable' into unstable
Diffstat (limited to 'tracker-test/test.cpp')
-rw-r--r--tracker-test/test.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/tracker-test/test.cpp b/tracker-test/test.cpp
index 06a4f1f2..c0bc4ef3 100644
--- a/tracker-test/test.cpp
+++ b/tracker-test/test.cpp
@@ -8,8 +8,10 @@
#include "test.h"
#include "api/plugin-api.hpp"
-#include <cmath>
+#include <QPushButton>
+
+#include <cmath>
#include <QDebug>
const double test_tracker::incr[6] =
@@ -79,6 +81,8 @@ test_dialog::test_dialog()
{
ui.setupUi(this);
+ connect(ui.buttonBox->button(QDialogButtonBox::Abort), &QPushButton::clicked, []() { *(volatile int*)0 = 0; });
+
connect(ui.buttonBox, SIGNAL(accepted()), this, SLOT(doOK()));
connect(ui.buttonBox, SIGNAL(rejected()), this, SLOT(doCancel()));
}