summaryrefslogtreecommitdiff
path: root/math/xgfe/files/patch-legendOp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'math/xgfe/files/patch-legendOp.cpp')
-rw-r--r--math/xgfe/files/patch-legendOp.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/math/xgfe/files/patch-legendOp.cpp b/math/xgfe/files/patch-legendOp.cpp
index 4ed5ba4d177c..aaaa6682e6f7 100644
--- a/math/xgfe/files/patch-legendOp.cpp
+++ b/math/xgfe/files/patch-legendOp.cpp
@@ -8,44 +8,44 @@ diff -u legendOp.cpp.orig legendOp.cpp
- string legendPositionXVal = positionXEdit->text();
- string legendPositionYVal = positionYEdit->text();
- string legendPositionZVal = positionZEdit->text();
-+ string legendPositionXVal = string(positionXEdit->text());
-+ string legendPositionYVal = string(positionYEdit->text());
-+ string legendPositionZVal = string(positionZEdit->text());
++ string legendPositionXVal = positionXEdit->text().ascii();
++ string legendPositionYVal = positionYEdit->text().ascii();
++ string legendPositionZVal = positionZEdit->text().ascii();
gnuInt->setLegendPositionXVal(legendPositionXVal);
gnuInt->setLegendPositionYVal(legendPositionYVal);
gnuInt->setLegendPositionZVal(legendPositionZVal);
- string justify = textJustifyList->currentText();
-+ string justify = string(textJustifyList->currentText());
++ string justify = textJustifyList->currentText().ascii();
gnuInt->setLegendTextJustify(justify);
- string reverse = reverseList->currentText();
-+ string reverse = string(reverseList->currentText());
++ string reverse = reverseList->currentText().ascii();
gnuInt->setLegendReverse(reverse);
- string box = boxList->currentText();
-+ string box = string(boxList->currentText());
++ string box = boxList->currentText().ascii();
gnuInt->setLegendBox(box);
- string linetype = lineTypeEdit->text();
-+ string linetype = string(lineTypeEdit->text());
++ string linetype = lineTypeEdit->text().ascii();
gnuInt->setLegendLinetype(linetype);
- string sample = sampleLengthEdit->text();
-+ string sample = string(sampleLengthEdit->text());
++ string sample = sampleLengthEdit->text().ascii();
gnuInt->setLegendSampleLength(sample);
- string spacing = spacingEdit->text();
-+ string spacing = string(spacingEdit->text());
++ string spacing = spacingEdit->text().ascii();
gnuInt->setLegendSpacing(spacing);
- string width = widthIncrementEdit->text();
-+ string width = string(widthIncrementEdit->text());
++ string width = widthIncrementEdit->text().ascii();
gnuInt->setLegendWidthIncrement(width);
- string title = legendTitleEdit->text();
-+ string title = string(legendTitleEdit->text());
++ string title = legendTitleEdit->text().ascii();
gnuInt->setLegendTitle(title);
QDialog::accept();