Skip to content

Commit 91a7361

Browse files
committed
Dialog cleanup
1 parent 0349e91 commit 91a7361

File tree

8 files changed

+9
-18
lines changed

8 files changed

+9
-18
lines changed

src/Interface/Modules/Fields/BuildMappingMatrixDialog.cc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@
2929
#include <Interface/Modules/Fields/BuildMappingMatrixDialog.h>
3030
#include <Core/Algorithms/Legacy/Fields/Mapping/BuildMappingMatrixAlgo.h>
3131
#include <Dataflow/Network/ModuleStateInterface.h> ///TODO: extract into intermediate
32-
#include <Core/Logging/Log.h>
33-
#include <Core/Math/MiscMath.h>
3432

3533
using namespace SCIRun::Gui;
3634
using namespace SCIRun::Dataflow::Networks;

src/Interface/Modules/Fields/ClipVolumeByIsovalueDialog.cc

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,4 @@ ClipVolumeByIsovalueDialog::ClipVolumeByIsovalueDialog(const std::string& name,
4747
fixSize();
4848
addDoubleSpinBoxManager(IsoValueSpinBox_, ClipMeshByIsovalueAlgo::ScalarIsoValue);
4949
addRadioButtonGroupManager({ lessthanRadioButton_, greaterthanRadioButton_}, ClipMeshByIsovalueAlgo::LessThanIsoValue);
50-
51-
}
52-
53-
void ClipVolumeByIsovalueDialog::pullSpecial()
54-
{
5550
}

src/Interface/Modules/Fields/ClipVolumeByIsovalueDialog.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,9 @@ class SCISHARE ClipVolumeByIsovalueDialog : public ModuleDialogGeneric,
4242
Q_OBJECT
4343

4444
public:
45-
ClipVolumeByIsovalueDialog(const std::string& name,
45+
ClipVolumeByIsovalueDialog(const std::string& name,
4646
SCIRun::Dataflow::Networks::ModuleStateHandle state,
4747
QWidget* parent = 0);
48-
virtual void pullSpecial() override;
49-
void push();
5048
};
5149

5250
}

src/Interface/Modules/Fields/FairMesh.ui

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
<rect>
77
<x>0</x>
88
<y>0</y>
9-
<width>291</width>
10-
<height>208</height>
9+
<width>383</width>
10+
<height>254</height>
1111
</rect>
1212
</property>
1313
<property name="minimumSize">
1414
<size>
15-
<width>291</width>
16-
<height>208</height>
15+
<width>383</width>
16+
<height>254</height>
1717
</size>
1818
</property>
1919
<property name="windowTitle">

src/Interface/Modules/Fields/FairMeshDialog.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ void FairMeshDialog::push()
6060
}
6161
}
6262

63-
void FairMeshDialog::pullSpecial() //TODO: change to checkbox manager
63+
void FairMeshDialog::pullSpecial() //TODO: change to checkbox manager //TODO refactor away
6464
{
6565
using namespace Parameters;
6666
auto method = state_->getValue(FairMeshMethod).toString();

src/Interface/Modules/Fields/GetDomainBoundaryDialog.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ void GetDomainBoundaryDialog::push()
6565
}
6666
}
6767

68-
void GetDomainBoundaryDialog::pullSpecial() //TODO change to radio button manager
68+
void GetDomainBoundaryDialog::pullSpecial() //TODO change to radio button manager //TODO refactor away
6969
{
7070
using namespace Parameters;
7171
compartmentRadioButton_->setChecked(!state_->getValue(UseRange).toBool());

src/Interface/Modules/Fields/ProjectPointsOntoMeshDialog.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ void ProjectPointsOntoMeshDialog::push()
5555
}
5656
}
5757

58-
void ProjectPointsOntoMeshDialog::pullSpecial()
58+
void ProjectPointsOntoMeshDialog::pullSpecial() //TODO refactor away
5959
{
6060
using namespace Parameters;
6161
auto method = state_->getValue(ProjectMethod).toString();

src/Interface/Modules/Math/AppendMatrixDialog.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ void AppendMatrixDialog::isCols()
5959
state_->setValue(Variables::RowsOrColumns, AppendMatrixAlgorithm::COLUMNS);
6060
}
6161

62-
void AppendMatrixDialog::pullSpecial()
62+
void AppendMatrixDialog::pullSpecial() //TODO refactor away
6363
{
6464
//TODO convert to new widget managers
6565
if (AppendMatrixAlgorithm::ROWS == state_->getValue(Variables::RowsOrColumns).toInt())

0 commit comments

Comments
 (0)