summaryrefslogtreecommitdiffstats
path: root/kmymoney2/reports/querytabletest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmymoney2/reports/querytabletest.cpp')
-rw-r--r--kmymoney2/reports/querytabletest.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kmymoney2/reports/querytabletest.cpp b/kmymoney2/reports/querytabletest.cpp
index 458589d..39037d1 100644
--- a/kmymoney2/reports/querytabletest.cpp
+++ b/kmymoney2/reports/querytabletest.cpp
@@ -283,7 +283,7 @@ void QueryTableTest::testQueryBasics()
}
catch(MyMoneyException *e)
{
- CPPUNIT_FAIL(e->what());
+ CPPUNIT_FAIL(e->what().local8Bit().data());
delete e;
}
@@ -429,7 +429,7 @@ void QueryTableTest::testAccountQuery()
}
catch(MyMoneyException *e)
{
- CPPUNIT_FAIL(e->what());
+ CPPUNIT_FAIL(e->what().local8Bit().data());
delete e;
}
}
@@ -605,7 +605,7 @@ void QueryTableTest::testInvestment(void)
}
catch(MyMoneyException *e)
{
- CPPUNIT_FAIL(e->what());
+ CPPUNIT_FAIL(e->what().local8Bit().data());
delete e;
}
}
@@ -659,7 +659,7 @@ void QueryTableTest::testInvestment(void)
}
catch(MyMoneyException *e)
{
- CPPUNIT_FAIL(e->what());
+ CPPUNIT_FAIL(e->what().local8Bit().data());
delete e;
}
@@ -690,7 +690,7 @@ void QueryTableTest::testTaxReport()
TQString html = qtbl_3.renderHTML();
CPPUNIT_ASSERT(rows.count() == 1);
} catch(MyMoneyException *e) {
- CPPUNIT_FAIL(e->what());
+ CPPUNIT_FAIL(e->what().local8Bit().data());
delete e;
}
}