summaryrefslogtreecommitdiff
path: root/noncore/tools/calc2/engine.cpp
Side-by-side diff
Diffstat (limited to 'noncore/tools/calc2/engine.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/tools/calc2/engine.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/noncore/tools/calc2/engine.cpp b/noncore/tools/calc2/engine.cpp
index a9a47c4..e843e29 100644
--- a/noncore/tools/calc2/engine.cpp
+++ b/noncore/tools/calc2/engine.cpp
@@ -102,5 +102,5 @@ void Engine::pushValue (char v)
if (!ok) {
state = sError;
- qDebug("pushValue() - num->string conversion");
+ odebug << "pushValue() - num->string conversion" << oendl;
} else {
const QString constString = displayString;
@@ -128,5 +128,5 @@ void Engine::del ()
break;
case rFraction:
- qDebug("not available");
+ odebug << "not available" << oendl;
break;
default:
@@ -137,5 +137,5 @@ void Engine::del ()
if (!ok) {
state = sError;
- qDebug("del() - num->string conversion");
+ odebug << "del() - num->string conversion" << oendl;
} else {
const QString constString = displayString;
@@ -150,5 +150,5 @@ void Engine::displayData(Data d) {
break;
case rFraction:
- qDebug("fractional display not yet impl");
+ odebug << "fractional display not yet impl" << oendl;
break;
default:
@@ -173,5 +173,5 @@ int Engine::calcBase () {
default:
state = sError;
- qDebug("Error - attempt to calc base for non-integer");
+ odebug << "Error - attempt to calc base for non-integer" << oendl;
return 10;
};