Skip to content

Commit 42245f6

Browse files
committed
Renamed GNESingleParametersDialog to GNEParametersDialog. Refs #16898
1 parent db01f46 commit 42245f6

File tree

6 files changed

+81
-81
lines changed

6 files changed

+81
-81
lines changed

src/netedit/dialogs/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ set(netedit_dialogs_SRCS
2222
GNEHelpAttributesDialog.h
2323
GNEKeepElementsDialog.cpp
2424
GNEKeepElementsDialog.h
25-
GNESingleParametersDialog.cpp
26-
GNESingleParametersDialog.h
25+
GNEParametersDialog.cpp
26+
GNEParametersDialog.h
2727
GNEUndoListDialog.cpp
2828
GNEUndoListDialog.h
2929
)

src/netedit/dialogs/GNESingleParametersDialog.cpp renamed to src/netedit/dialogs/GNEParametersDialog.cpp

Lines changed: 61 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html
1212
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
1313
/****************************************************************************/
14-
/// @file GNESingleParametersDialog.cpp
14+
/// @file GNEParametersDialog.cpp
1515
/// @author Pablo Alvarez Lopez
1616
/// @date Jul 2018
1717
///
@@ -29,50 +29,50 @@
2929
#include <utils/gui/div/GUIDesigns.h>
3030
#include <utils/xml/XMLSubSys.h>
3131

32-
#include "GNESingleParametersDialog.h"
32+
#include "GNEParametersDialog.h"
3333

3434
// ===========================================================================
3535
// FOX callback mapping
3636
// ===========================================================================
3737

38-
FXDEFMAP(GNESingleParametersDialog) GNESingleParametersDialogMap[] = {
39-
FXMAPFUNC(SEL_COMMAND, MID_GNE_BUTTON_ACCEPT, GNESingleParametersDialog::onCmdAccept),
40-
FXMAPFUNC(SEL_COMMAND, MID_GNE_BUTTON_CANCEL, GNESingleParametersDialog::onCmdCancel),
41-
FXMAPFUNC(SEL_COMMAND, MID_GNE_BUTTON_RESET, GNESingleParametersDialog::onCmdReset),
42-
FXMAPFUNC(SEL_CHORE, FXDialogBox::ID_CANCEL, GNESingleParametersDialog::onCmdCancel),
43-
FXMAPFUNC(SEL_TIMEOUT, FXDialogBox::ID_CANCEL, GNESingleParametersDialog::onCmdCancel),
44-
FXMAPFUNC(SEL_COMMAND, FXDialogBox::ID_CANCEL, GNESingleParametersDialog::onCmdCancel),
45-
FXMAPFUNC(SEL_CLOSE, 0, GNESingleParametersDialog::onCmdCancel),
38+
FXDEFMAP(GNEParametersDialog) GNEParametersDialogMap[] = {
39+
FXMAPFUNC(SEL_COMMAND, MID_GNE_BUTTON_ACCEPT, GNEParametersDialog::onCmdAccept),
40+
FXMAPFUNC(SEL_COMMAND, MID_GNE_BUTTON_CANCEL, GNEParametersDialog::onCmdCancel),
41+
FXMAPFUNC(SEL_COMMAND, MID_GNE_BUTTON_RESET, GNEParametersDialog::onCmdReset),
42+
FXMAPFUNC(SEL_CHORE, FXDialogBox::ID_CANCEL, GNEParametersDialog::onCmdCancel),
43+
FXMAPFUNC(SEL_TIMEOUT, FXDialogBox::ID_CANCEL, GNEParametersDialog::onCmdCancel),
44+
FXMAPFUNC(SEL_COMMAND, FXDialogBox::ID_CANCEL, GNEParametersDialog::onCmdCancel),
45+
FXMAPFUNC(SEL_CLOSE, 0, GNEParametersDialog::onCmdCancel),
4646
};
4747

48-
FXDEFMAP(GNESingleParametersDialog::ParametersValues) ParametersValuesMap[] = {
49-
FXMAPFUNC(SEL_COMMAND, MID_GNE_SET_ATTRIBUTE, GNESingleParametersDialog::ParametersValues::onCmdSetAttribute),
50-
FXMAPFUNC(SEL_COMMAND, MID_GNE_REMOVE_ATTRIBUTE, GNESingleParametersDialog::ParametersValues::onCmdButtonPress),
51-
FXMAPFUNC(SEL_PAINT, 0, GNESingleParametersDialog::ParametersValues::onPaint),
48+
FXDEFMAP(GNEParametersDialog::ParametersValues) ParametersValuesMap[] = {
49+
FXMAPFUNC(SEL_COMMAND, MID_GNE_SET_ATTRIBUTE, GNEParametersDialog::ParametersValues::onCmdSetAttribute),
50+
FXMAPFUNC(SEL_COMMAND, MID_GNE_REMOVE_ATTRIBUTE, GNEParametersDialog::ParametersValues::onCmdButtonPress),
51+
FXMAPFUNC(SEL_PAINT, 0, GNEParametersDialog::ParametersValues::onPaint),
5252
};
5353

54-
FXDEFMAP(GNESingleParametersDialog::ParametersOperations) ParametersOperationsMap[] = {
55-
FXMAPFUNC(SEL_COMMAND, MID_GNE_BUTTON_LOAD, GNESingleParametersDialog::ParametersOperations::onCmdLoadParameters),
56-
FXMAPFUNC(SEL_COMMAND, MID_GNE_BUTTON_SAVE, GNESingleParametersDialog::ParametersOperations::onCmdSaveParameters),
57-
FXMAPFUNC(SEL_COMMAND, MID_GNE_BUTTON_CLEAR, GNESingleParametersDialog::ParametersOperations::onCmdClearParameters),
58-
FXMAPFUNC(SEL_COMMAND, MID_GNE_BUTTON_SORT, GNESingleParametersDialog::ParametersOperations::onCmdSortParameters),
59-
FXMAPFUNC(SEL_COMMAND, MID_HELP, GNESingleParametersDialog::ParametersOperations::onCmdHelpParameter),
54+
FXDEFMAP(GNEParametersDialog::ParametersOperations) ParametersOperationsMap[] = {
55+
FXMAPFUNC(SEL_COMMAND, MID_GNE_BUTTON_LOAD, GNEParametersDialog::ParametersOperations::onCmdLoadParameters),
56+
FXMAPFUNC(SEL_COMMAND, MID_GNE_BUTTON_SAVE, GNEParametersDialog::ParametersOperations::onCmdSaveParameters),
57+
FXMAPFUNC(SEL_COMMAND, MID_GNE_BUTTON_CLEAR, GNEParametersDialog::ParametersOperations::onCmdClearParameters),
58+
FXMAPFUNC(SEL_COMMAND, MID_GNE_BUTTON_SORT, GNEParametersDialog::ParametersOperations::onCmdSortParameters),
59+
FXMAPFUNC(SEL_COMMAND, MID_HELP, GNEParametersDialog::ParametersOperations::onCmdHelpParameter),
6060
};
6161

6262
// Object implementation
63-
FXIMPLEMENT(GNESingleParametersDialog, GNEDialog, GNESingleParametersDialogMap, ARRAYNUMBER(GNESingleParametersDialogMap))
64-
FXIMPLEMENT(GNESingleParametersDialog::ParametersValues, FXGroupBox, ParametersValuesMap, ARRAYNUMBER(ParametersValuesMap))
65-
FXIMPLEMENT(GNESingleParametersDialog::ParametersOperations, FXGroupBox, ParametersOperationsMap, ARRAYNUMBER(ParametersOperationsMap))
63+
FXIMPLEMENT(GNEParametersDialog, GNEDialog, GNEParametersDialogMap, ARRAYNUMBER(GNEParametersDialogMap))
64+
FXIMPLEMENT(GNEParametersDialog::ParametersValues, FXGroupBox, ParametersValuesMap, ARRAYNUMBER(ParametersValuesMap))
65+
FXIMPLEMENT(GNEParametersDialog::ParametersOperations, FXGroupBox, ParametersOperationsMap, ARRAYNUMBER(ParametersOperationsMap))
6666

6767
// ===========================================================================
6868
// member method definitions
6969
// ===========================================================================
7070

7171
// ---------------------------------------------------------------------------
72-
// GNESingleParametersDialog::ParametersValues - methods
72+
// GNEParametersDialog::ParametersValues - methods
7373
// ---------------------------------------------------------------------------
7474

75-
GNESingleParametersDialog::ParametersValues::ParametersValues(FXHorizontalFrame* frame, const std::string& name) :
75+
GNEParametersDialog::ParametersValues::ParametersValues(FXHorizontalFrame* frame, const std::string& name) :
7676
FXGroupBox(frame, name.c_str(), GUIDesignGroupBoxFrameFill) {
7777
// create labels for keys and values
7878
FXHorizontalFrame* horizontalFrameLabels = new FXHorizontalFrame(this, GUIDesignAuxiliarHorizontalFrame);
@@ -85,11 +85,11 @@ GNESingleParametersDialog::ParametersValues::ParametersValues(FXHorizontalFrame*
8585
}
8686

8787

88-
GNESingleParametersDialog::ParametersValues::~ParametersValues() {}
88+
GNEParametersDialog::ParametersValues::~ParametersValues() {}
8989

9090

9191
void
92-
GNESingleParametersDialog::ParametersValues::setParameters(const Parameterised::Map& newParameters) {
92+
GNEParametersDialog::ParametersValues::setParameters(const Parameterised::Map& newParameters) {
9393
// clear rows
9494
clearParameters();
9595
// iterate over parameteres
@@ -100,7 +100,7 @@ GNESingleParametersDialog::ParametersValues::setParameters(const Parameterised::
100100

101101

102102
void
103-
GNESingleParametersDialog::ParametersValues::setParameters(const std::vector<std::pair<std::string, std::string> >& newParameters) {
103+
GNEParametersDialog::ParametersValues::setParameters(const std::vector<std::pair<std::string, std::string> >& newParameters) {
104104
// clear rows
105105
clearParameters();
106106
// iterate over parameteres
@@ -111,7 +111,7 @@ GNESingleParametersDialog::ParametersValues::setParameters(const std::vector<std
111111

112112

113113
void
114-
GNESingleParametersDialog::ParametersValues::addParameter(std::pair<std::string, std::string> newParameter) {
114+
GNEParametersDialog::ParametersValues::addParameter(std::pair<std::string, std::string> newParameter) {
115115
// enable last row
116116
myParameterRows.back()->enableRow(newParameter.first, newParameter.second);
117117
// add row
@@ -122,7 +122,7 @@ GNESingleParametersDialog::ParametersValues::addParameter(std::pair<std::string,
122122

123123

124124
void
125-
GNESingleParametersDialog::ParametersValues::clearParameters() {
125+
GNEParametersDialog::ParametersValues::clearParameters() {
126126
// iterate over all rows
127127
for (const auto& parameterRow : myParameterRows) {
128128
delete parameterRow;
@@ -136,14 +136,14 @@ GNESingleParametersDialog::ParametersValues::clearParameters() {
136136
}
137137

138138

139-
const std::vector<GNESingleParametersDialog::ParametersValues::ParameterRow*>
140-
GNESingleParametersDialog::ParametersValues::getParameterRows() const {
139+
const std::vector<GNEParametersDialog::ParametersValues::ParameterRow*>
140+
GNEParametersDialog::ParametersValues::getParameterRows() const {
141141
return myParameterRows;
142142
}
143143

144144

145145
bool
146-
GNESingleParametersDialog::ParametersValues::keyExist(const std::string& key) const {
146+
GNEParametersDialog::ParametersValues::keyExist(const std::string& key) const {
147147
// just interate over myParameterRows and compare key
148148
for (const auto& row : myParameterRows) {
149149
if (row->keyField->getText().text() == key) {
@@ -155,7 +155,7 @@ GNESingleParametersDialog::ParametersValues::keyExist(const std::string& key) co
155155

156156

157157
long
158-
GNESingleParametersDialog::ParametersValues::onPaint(FXObject* o, FXSelector f, void* p) {
158+
GNEParametersDialog::ParametersValues::onPaint(FXObject* o, FXSelector f, void* p) {
159159
// size of key label has to be updated in every interation
160160
if (myParameterRows.size() > 0) {
161161
myKeyLabel->setWidth(myParameterRows.front()->keyField->getWidth());
@@ -165,7 +165,7 @@ GNESingleParametersDialog::ParametersValues::onPaint(FXObject* o, FXSelector f,
165165

166166

167167
long
168-
GNESingleParametersDialog::ParametersValues::onCmdSetAttribute(FXObject* obj, FXSelector, void*) {
168+
GNEParametersDialog::ParametersValues::onCmdSetAttribute(FXObject* obj, FXSelector, void*) {
169169
// find what value was changed
170170
for (int i = 0; i < (int)myParameterRows.size(); i++) {
171171
if (myParameterRows.at(i)->keyField == obj) {
@@ -183,7 +183,7 @@ GNESingleParametersDialog::ParametersValues::onCmdSetAttribute(FXObject* obj, FX
183183

184184

185185
long
186-
GNESingleParametersDialog::ParametersValues::onCmdButtonPress(FXObject* obj, FXSelector, void*) {
186+
GNEParametersDialog::ParametersValues::onCmdButtonPress(FXObject* obj, FXSelector, void*) {
187187
// first check if add button was pressed
188188
if (myParameterRows.back()->button == obj) {
189189
// create new parameter
@@ -206,7 +206,7 @@ GNESingleParametersDialog::ParametersValues::onCmdButtonPress(FXObject* obj, FXS
206206
}
207207

208208

209-
GNESingleParametersDialog::ParametersValues::ParameterRow::ParameterRow(ParametersValues* ParametersValues, FXVerticalFrame* verticalFrameParent) {
209+
GNEParametersDialog::ParametersValues::ParameterRow::ParameterRow(ParametersValues* ParametersValues, FXVerticalFrame* verticalFrameParent) {
210210
horizontalFrame = new FXHorizontalFrame(verticalFrameParent, GUIDesignAuxiliarHorizontalFrame);
211211
keyField = new FXTextField(horizontalFrame, GUIDesignTextFieldNCol, ParametersValues, MID_GNE_SET_ATTRIBUTE, GUIDesignTextField);
212212
valueField = new FXTextField(horizontalFrame, GUIDesignTextFieldNCol, ParametersValues, MID_GNE_SET_ATTRIBUTE, GUIDesignTextField);
@@ -220,14 +220,14 @@ GNESingleParametersDialog::ParametersValues::ParameterRow::ParameterRow(Paramete
220220
}
221221

222222

223-
GNESingleParametersDialog::ParametersValues::ParameterRow::~ParameterRow() {
223+
GNEParametersDialog::ParametersValues::ParameterRow::~ParameterRow() {
224224
// simply delete horizontalFrame (rest of elements will be automatic deleted due they are children of horizontal frame)
225225
delete horizontalFrame;
226226
}
227227

228228

229229
void
230-
GNESingleParametersDialog::ParametersValues::ParameterRow::disableRow() {
230+
GNEParametersDialog::ParametersValues::ParameterRow::disableRow() {
231231
// hide all
232232
keyField->setText("");
233233
keyField->disable();
@@ -239,7 +239,7 @@ GNESingleParametersDialog::ParametersValues::ParameterRow::disableRow() {
239239

240240

241241
void
242-
GNESingleParametersDialog::ParametersValues::ParameterRow::enableRow(const std::string& parameter, const std::string& value) const {
242+
GNEParametersDialog::ParametersValues::ParameterRow::enableRow(const std::string& parameter, const std::string& value) const {
243243
// restore color and enable key field
244244
keyField->setText(parameter.c_str());
245245
if (parameter.empty() || SUMOXMLDefinitions::isValidParameterKey(parameter)) {
@@ -258,7 +258,7 @@ GNESingleParametersDialog::ParametersValues::ParameterRow::enableRow(const std::
258258

259259

260260
void
261-
GNESingleParametersDialog::ParametersValues::ParameterRow::toggleAddButton() {
261+
GNEParametersDialog::ParametersValues::ParameterRow::toggleAddButton() {
262262
// clear and disable parameter and value fields
263263
keyField->setText("");
264264
keyField->disable();
@@ -272,22 +272,22 @@ GNESingleParametersDialog::ParametersValues::ParameterRow::toggleAddButton() {
272272

273273

274274
bool
275-
GNESingleParametersDialog::ParametersValues::ParameterRow::isButtonInAddMode() const {
275+
GNEParametersDialog::ParametersValues::ParameterRow::isButtonInAddMode() const {
276276
return (button->getIcon() == GUIIconSubSys::getIcon(GUIIcon::ADD));
277277
}
278278

279279

280280
void
281-
GNESingleParametersDialog::ParametersValues::ParameterRow::copyValues(const ParameterRow& other) {
281+
GNEParametersDialog::ParametersValues::ParameterRow::copyValues(const ParameterRow& other) {
282282
keyField->setText(other.keyField->getText());
283283
valueField->setText(other.valueField->getText());
284284
}
285285

286286
// ---------------------------------------------------------------------------
287-
// GNESingleParametersDialog::ParametersOperations - methods
287+
// GNEParametersDialog::ParametersOperations - methods
288288
// ---------------------------------------------------------------------------
289289

290-
GNESingleParametersDialog::ParametersOperations::ParametersOperations(FXHorizontalFrame* frame, GNESingleParametersDialog* ParameterDialogParent) :
290+
GNEParametersDialog::ParametersOperations::ParametersOperations(FXHorizontalFrame* frame, GNEParametersDialog* ParameterDialogParent) :
291291
FXGroupBox(frame, "Operations", GUIDesignGroupBoxFrame100),
292292
myParameterDialogParent(ParameterDialogParent) {
293293
// create buttons
@@ -299,11 +299,11 @@ GNESingleParametersDialog::ParametersOperations::ParametersOperations(FXHorizont
299299
}
300300

301301

302-
GNESingleParametersDialog::ParametersOperations::~ParametersOperations() {}
302+
GNEParametersDialog::ParametersOperations::~ParametersOperations() {}
303303

304304

305305
long
306-
GNESingleParametersDialog::ParametersOperations::onCmdLoadParameters(FXObject*, FXSelector, void*) {
306+
GNEParametersDialog::ParametersOperations::onCmdLoadParameters(FXObject*, FXSelector, void*) {
307307
// get the Additional file name
308308
FXFileDialog opendialog(this, TL("Open Parameter Template"));
309309
opendialog.setIcon(GUIIconSubSys::getIcon(GUIIcon::GREENVEHICLE));
@@ -330,7 +330,7 @@ GNESingleParametersDialog::ParametersOperations::onCmdLoadParameters(FXObject*,
330330

331331

332332
long
333-
GNESingleParametersDialog::ParametersOperations::onCmdSaveParameters(FXObject*, FXSelector, void*) {
333+
GNEParametersDialog::ParametersOperations::onCmdSaveParameters(FXObject*, FXSelector, void*) {
334334
// obtain file to save parameters
335335
FXString file = MFXUtils::getFilename2Write(this,
336336
TL("Save Parameter Template file"),
@@ -367,15 +367,15 @@ GNESingleParametersDialog::ParametersOperations::onCmdSaveParameters(FXObject*,
367367

368368

369369
long
370-
GNESingleParametersDialog::ParametersOperations::onCmdClearParameters(FXObject*, FXSelector, void*) {
370+
GNEParametersDialog::ParametersOperations::onCmdClearParameters(FXObject*, FXSelector, void*) {
371371
// simply clear parameters from ParametersValues
372372
myParameterDialogParent->myParametersValues->clearParameters();
373373
return 1;
374374
}
375375

376376

377377
long
378-
GNESingleParametersDialog::ParametersOperations::onCmdSortParameters(FXObject*, FXSelector, void*) {
378+
GNEParametersDialog::ParametersOperations::onCmdSortParameters(FXObject*, FXSelector, void*) {
379379
// declare two containers for parameters
380380
std::vector<std::pair<std::string, std::string> > nonEmptyKeyValues;
381381
std::vector<std::string> emptyKeyValues;
@@ -403,7 +403,7 @@ GNESingleParametersDialog::ParametersOperations::onCmdSortParameters(FXObject*,
403403

404404

405405
long
406-
GNESingleParametersDialog::ParametersOperations::onCmdHelpParameter(FXObject*, FXSelector, void*) {
406+
GNEParametersDialog::ParametersOperations::onCmdHelpParameter(FXObject*, FXSelector, void*) {
407407
// set help text
408408
std::ostringstream help;
409409
help
@@ -418,17 +418,17 @@ GNESingleParametersDialog::ParametersOperations::onCmdHelpParameter(FXObject*, F
418418
}
419419

420420

421-
GNESingleParametersDialog::ParametersOperations::GNEParameterHandler::GNEParameterHandler(ParametersOperations* ParametersOperationsParent, const std::string& file) :
421+
GNEParametersDialog::ParametersOperations::GNEParameterHandler::GNEParameterHandler(ParametersOperations* ParametersOperationsParent, const std::string& file) :
422422
SUMOSAXHandler(file),
423423
myParametersOperationsParent(ParametersOperationsParent) {
424424
}
425425

426426

427-
GNESingleParametersDialog::ParametersOperations::GNEParameterHandler::~GNEParameterHandler() {}
427+
GNEParametersDialog::ParametersOperations::GNEParameterHandler::~GNEParameterHandler() {}
428428

429429

430430
void
431-
GNESingleParametersDialog::ParametersOperations::GNEParameterHandler::myStartElement(int element, const SUMOSAXAttributes& attrs) {
431+
GNEParametersDialog::ParametersOperations::GNEParameterHandler::myStartElement(int element, const SUMOSAXAttributes& attrs) {
432432
// only continue if tag is valid
433433
if (element != SUMO_TAG_NOTHING) {
434434
// Call parse and build depending of tag
@@ -465,10 +465,10 @@ GNESingleParametersDialog::ParametersOperations::GNEParameterHandler::myStartEle
465465
}
466466

467467
// ---------------------------------------------------------------------------
468-
// GNESingleParametersDialog - methods
468+
// GNEParametersDialog - methods
469469
// ---------------------------------------------------------------------------
470470

471-
GNESingleParametersDialog::GNESingleParametersDialog(GNEApplicationWindow* applicationWindow, const Parameterised::Map& parameters) :
471+
GNEParametersDialog::GNEParametersDialog(GNEApplicationWindow* applicationWindow, const Parameterised::Map& parameters) :
472472
GNEDialog(applicationWindow, TL("Edit parameters"), GUIIcon::APP_TABLE, GNEDialog::Buttons::ACCEPT_CANCEL_RESET,
473473
OpenType::MODAL, GNEDialog::ResizeMode::RESIZABLE, 400, 300),
474474
myOriginalParameters(parameters) {
@@ -484,17 +484,17 @@ GNESingleParametersDialog::GNESingleParametersDialog(GNEApplicationWindow* appli
484484
openDialog();
485485
}
486486

487-
GNESingleParametersDialog::~GNESingleParametersDialog() {}
487+
GNEParametersDialog::~GNEParametersDialog() {}
488488

489489

490490
void
491-
GNESingleParametersDialog::runInternalTest(const InternalTestStep::DialogArgument* /*dialogArgument*/) {
491+
GNEParametersDialog::runInternalTest(const InternalTestStep::DialogArgument* /*dialogArgument*/) {
492492
// nothing to do (yet)
493493
}
494494

495495

496496
std::vector<std::pair<std::string, std::string> >
497-
GNESingleParametersDialog::getEditedParameters() const {
497+
GNEParametersDialog::getEditedParameters() const {
498498
std::vector<std::pair<std::string, std::string> > parameters;
499499
for (const auto& parameterRow : myParametersValues->getParameterRows()) {
500500
// ignore last row (the row with + button)
@@ -508,7 +508,7 @@ GNESingleParametersDialog::getEditedParameters() const {
508508

509509

510510
long
511-
GNESingleParametersDialog::onCmdAccept(FXObject*, FXSelector, void*) {
511+
GNEParametersDialog::onCmdAccept(FXObject*, FXSelector, void*) {
512512
// declare vector for parameters in stringvector format
513513
std::vector<std::pair<std::string, std::string> > editedParameters = getEditedParameters();
514514
// check keys
@@ -539,7 +539,7 @@ GNESingleParametersDialog::onCmdAccept(FXObject*, FXSelector, void*) {
539539

540540

541541
long
542-
GNESingleParametersDialog::onCmdReset(FXObject*, FXSelector, void*) {
542+
GNEParametersDialog::onCmdReset(FXObject*, FXSelector, void*) {
543543
// restore original parameters
544544
myParametersValues->setParameters(myOriginalParameters);
545545
return 1;

0 commit comments

Comments
 (0)