summaryrefslogtreecommitdiffstats
path: root/kmymoney2/reports
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2022-03-18 04:03:50 +0100
committerSlávek Banko <slavek.banko@axis.cz>2022-03-20 18:50:59 +0100
commit5ec229a4470f605eca53326853ff246a49e80189 (patch)
tree5b40a3f1189bdd4307d903f13235fe6ba7081c46 /kmymoney2/reports
parent49e34b02b0bb609ce6e9ff1d2d96bdfcb03617d1 (diff)
downloadkmymoney-5ec229a4470f605eca53326853ff246a49e80189.tar.gz
kmymoney-5ec229a4470f605eca53326853ff246a49e80189.zip
Enforce the use of TQt with STL only where it is necessary.
The definition of -UTQT_NO_STL is no longer needed. Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit f3fd991c693316d26e360438eff8ecff8a54553d)
Diffstat (limited to 'kmymoney2/reports')
-rw-r--r--kmymoney2/reports/pivottabletest.cpp4
-rw-r--r--kmymoney2/reports/querytabletest.cpp10
2 files changed, 7 insertions, 7 deletions
diff --git a/kmymoney2/reports/pivottabletest.cpp b/kmymoney2/reports/pivottabletest.cpp
index cb86a39..6edf5ac 100644
--- a/kmymoney2/reports/pivottabletest.cpp
+++ b/kmymoney2/reports/pivottabletest.cpp
@@ -121,7 +121,7 @@ void PivotTableTest::testNetWorthSingle()
}
catch(MyMoneyException *e)
{
- CPPUNIT_FAIL(e->what());
+ CPPUNIT_FAIL(e->what().local8Bit().data());
delete e;
}
}
@@ -938,7 +938,7 @@ void PivotTableTest::testInvestment(void)
}
catch(MyMoneyException *e)
{
- CPPUNIT_FAIL(e->what());
+ CPPUNIT_FAIL(e->what().local8Bit().data());
delete e;
}
}
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;
}
}