Skip to content

Commit

Permalink
refs #9887. Fix BinMD/SliceMD dialogs.
Browse files Browse the repository at this point in the history
  • Loading branch information
OwenArnold committed Jul 14, 2014
1 parent b3c0cca commit a65eaac
Showing 1 changed file with 4 additions and 2 deletions.
Expand Up @@ -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)));
Expand Down

0 comments on commit a65eaac

Please sign in to comment.