diff options
author | Michele Calgaro <[email protected]> | 2018-10-17 23:25:56 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2018-10-17 23:25:56 +0900 |
commit | 5bcc6704f753f686cf721c6f258e768cf52c63f2 (patch) | |
tree | 8bee128c731c8c995e9998aadf4c38cf563ca865 | |
parent | 3378a99a8756ebfb52d9ae8748a4e0d800a592e7 (diff) | |
download | koffice-5bcc6704f753f686cf721c6f258e768cf52c63f2.tar.gz koffice-5bcc6704f753f686cf721c6f258e768cf52c63f2.zip |
Removed obsolete Qt2's TQList/TQListIterator classes and replaced
with TQt3's TQPtrList/TQPtrListIterator ones.
Signed-off-by: Michele Calgaro <[email protected]>
-rw-r--r-- | filters/kword/latex/status.html | 2 | ||||
-rw-r--r-- | filters/olefilters/powerpoint97/powerpoint.h | 2 | ||||
-rw-r--r-- | kchart/kdchart/KDChartGlobal.h | 2 |
3 files changed, 2 insertions, 4 deletions
diff --git a/filters/kword/latex/status.html b/filters/kword/latex/status.html index 0b78eac2..240a1d44 100644 --- a/filters/kword/latex/status.html +++ b/filters/kword/latex/status.html @@ -281,7 +281,7 @@ </ul> </li> <li>clean code generated</li> - <li>use TQList for all lists</li> + <li>use TQPtrList for all lists</li> <li>improve the table generation. Now it is pretty good.</li> <li>new features <ul> diff --git a/filters/olefilters/powerpoint97/powerpoint.h b/filters/olefilters/powerpoint97/powerpoint.h index 54e8d7c7..4f172bc8 100644 --- a/filters/olefilters/powerpoint97/powerpoint.h +++ b/filters/olefilters/powerpoint97/powerpoint.h @@ -46,7 +46,7 @@ typedef uint4 psrSize; // each record is preceded by typedef uint2 psrInstance; typedef uint2 psrVersion; typedef uint4 psrReference; // Saved object reference -//typedef TQList<PptSlide> PptSlideList; +//typedef TQPtrList<PptSlide> PptSlideList; class Powerpoint { diff --git a/kchart/kdchart/KDChartGlobal.h b/kchart/kdchart/KDChartGlobal.h index ab7750ed..5629caa8 100644 --- a/kchart/kdchart/KDChartGlobal.h +++ b/kchart/kdchart/KDChartGlobal.h @@ -101,8 +101,6 @@ #endif // Q_OS_TEMP #endif // TQT_NO_COMPAT -#define TQPtrList TQList -#define TQPtrListIterator TQListIterator #define TQPtrVector TQVector #define TQMemArray TQArray |