diff options
author | Slávek Banko <[email protected]> | 2022-03-18 04:03:50 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2022-03-18 12:45:32 +0100 |
commit | f3fd991c693316d26e360438eff8ecff8a54553d (patch) | |
tree | 332159ae0e96affb31c831b82e069fbeb1d7984b /kmymoney2/converter | |
parent | 5e6c401557744fe5f9765471605cc793939fee1f (diff) | |
download | kmymoney-f3fd991c693316d26e360438eff8ecff8a54553d.tar.gz kmymoney-f3fd991c693316d26e360438eff8ecff8a54553d.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 <[email protected]>
Diffstat (limited to 'kmymoney2/converter')
-rw-r--r-- | kmymoney2/converter/convertertest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kmymoney2/converter/convertertest.cpp b/kmymoney2/converter/convertertest.cpp index 9766e2d..f8a5568 100644 --- a/kmymoney2/converter/convertertest.cpp +++ b/kmymoney2/converter/convertertest.cpp @@ -204,6 +204,6 @@ void ConverterTest::testDateFormat() } catch (MyMoneyException* e) { - CPPUNIT_FAIL(e->what()); + CPPUNIT_FAIL(e->what().local8Bit().data()); } } |