diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2022-03-18 04:03:50 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2022-03-20 18:50:59 +0100 |
commit | 5ec229a4470f605eca53326853ff246a49e80189 (patch) | |
tree | 5b40a3f1189bdd4307d903f13235fe6ba7081c46 /kmymoney2/mymoney/storage/mymoneydatabasemgr.cpp | |
parent | 49e34b02b0bb609ce6e9ff1d2d96bdfcb03617d1 (diff) | |
download | kmymoney-5ec229a4.tar.gz kmymoney-5ec229a4.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/mymoney/storage/mymoneydatabasemgr.cpp')
-rw-r--r-- | kmymoney2/mymoney/storage/mymoneydatabasemgr.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/kmymoney2/mymoney/storage/mymoneydatabasemgr.cpp b/kmymoney2/mymoney/storage/mymoneydatabasemgr.cpp index 98b6286..ced8e9a 100644 --- a/kmymoney2/mymoney/storage/mymoneydatabasemgr.cpp +++ b/kmymoney2/mymoney/storage/mymoneydatabasemgr.cpp @@ -15,6 +15,12 @@ * * ***************************************************************************/ +// force to use TQt with STL +#if defined(TQT_NO_STL) +# define DISABLE_TQT_NO_STL +# undef TQT_NO_STL +#endif + #ifdef HAVE_CONFIG_H #include <config.h> #endif @@ -1883,3 +1889,9 @@ void MyMoneyDatabaseMgr::removeReferences(const TQString& id) #undef TRY #undef CATCH #undef PASS + +// restore TQT_NO_STL +#if defined(DISABLE_TQT_NO_STL) +# undef DISABLE_TQT_NO_STL +# define TQT_NO_STL +#endif |