diff options
Diffstat (limited to 'math/xgfe/files/patch-barOp.cpp')
-rw-r--r-- | math/xgfe/files/patch-barOp.cpp | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/math/xgfe/files/patch-barOp.cpp b/math/xgfe/files/patch-barOp.cpp index b0d15f301243..3898f4ecd178 100644 --- a/math/xgfe/files/patch-barOp.cpp +++ b/math/xgfe/files/patch-barOp.cpp @@ -1,4 +1,3 @@ -diff -u barOp.cpp.orig barOp.cpp --- barOp.cpp.orig Thu May 7 07:46:39 1998 +++ barOp.cpp Thu Oct 30 21:42:04 2003 @@ -59,7 +59,7 @@ @@ -6,7 +5,16 @@ diff -u barOp.cpp.orig barOp.cpp void barOp::setBarOption() { - string barSize = barSizeEdit->text(); -+ string barSize = string(barSizeEdit->text()); ++ string barSize = barSizeEdit->text().ascii(); if (barSize != "") { +@@ -67,7 +67,7 @@ + } + else + { +- barSize = synList->currentText(); ++ barSize = synList->currentText().ascii(); + gnuInt->setBarSizeOption(barSize); + } + |