summaryrefslogtreecommitdiff
path: root/noncore/apps/checkbook/tabledef.cpp
Side-by-side diff
Diffstat (limited to 'noncore/apps/checkbook/tabledef.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/checkbook/tabledef.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/noncore/apps/checkbook/tabledef.cpp b/noncore/apps/checkbook/tabledef.cpp
index 9a42308..745cd80 100644
--- a/noncore/apps/checkbook/tabledef.cpp
+++ b/noncore/apps/checkbook/tabledef.cpp
@@ -30,2 +30,4 @@
+#include <opie2/odebug.h>
+using namespace Opie::Core;
@@ -44,3 +46,3 @@ void ColumnDef::addColumnValue(const QString &sValue)
if( (_type & 0x00ffffff) !=typeList )
- qDebug("Column %s is not a list", (const char *)_sName);
+ odebug << "Column " << (const char *)_sName << " is not a list" << oendl;
else
@@ -51,3 +53,3 @@ void ColumnDef::addColumnValue(const char *sValue)
if( (_type & 0x00ffffff)!=typeList )
- qDebug("Column %s is not a list", (const char *)_sName);
+ odebug << "Column " << (const char *)_sName << " is not a list" << oendl;
else