diff options
Diffstat (limited to 'tracker-test/test.cpp')
| -rw-r--r-- | tracker-test/test.cpp | 6 | 
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()));  } | 
