Skip to content
Snippets Groups Projects
Commit 18ae544b authored by Alex Buts's avatar Alex Buts
Browse files

Merge remote-tracking branch 'origin/feature/9887_fix_custom_dialogs'

parents 2ba2eeaf a65eaac8
No related merge requests found
......@@ -49,9 +49,11 @@ namespace MantidQt
ui.txt_memory->setValidator(new QIntValidator(this));
ui.txt_resursion_depth->setValidator(new QIntValidator(this));
/*
Do not need to connect up Accept/Reject. This gets done automatically, and the AlgorithmDialog base class
handles the slots.
*/
connect(ui.workspace_selector,SIGNAL(activated(int)),this ,SLOT(onWorkspaceChanged()));
connect(ui.controls, SIGNAL(accepted()), this, SLOT(accept()));
connect(ui.controls, SIGNAL(rejected()), this, SLOT(reject()));
connect(ui.ck_axis_aligned, SIGNAL(clicked(bool)), this, SLOT(onAxisAlignedChanged(bool)));
connect(ui.ck_max_from_input, SIGNAL(clicked(bool)), this, SLOT(onMaxFromInput(bool)));
connect(ui.ck_calculate, SIGNAL(clicked(bool)), this, SLOT(onCalculateChanged(bool)));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment