diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-05-24 22:16:28 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-05-24 22:23:46 +0900 |
commit | 37beffb02b15773dc224b48670c57f9fd70ccc2b (patch) | |
tree | b9d12902a34aa0d82682d54b45b2d106e7af56b7 | |
parent | 5780abe4edb586e8cc375fd21881bf1a38820200 (diff) | |
download | kmymoney-37beffb02b15773dc224b48670c57f9fd70ccc2b.tar.gz kmymoney-37beffb02b15773dc224b48670c57f9fd70ccc2b.zip |
Adjusted after dropping obsolete Qt2's QList and QVector classes.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | libkdchart/KDChartGlobal.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/libkdchart/KDChartGlobal.h b/libkdchart/KDChartGlobal.h index d315ee3..9d17abd 100644 --- a/libkdchart/KDChartGlobal.h +++ b/libkdchart/KDChartGlobal.h @@ -103,19 +103,16 @@ #define TQMemArray TQArray -#include <tqlist.h> -#include <tqvector.h> #include <tqarray.h> #else -#include <tqptrlist.h> -#include <tqptrvector.h> #include <tqmemarray.h> #endif // end of #if COMPAT_TQT_VERSION < 0x030000 - +#include <tqptrlist.h> +#include <tqptrvector.h> #endif |