diff options
author | Michele Calgaro <[email protected]> | 2018-10-17 23:25:59 +0900 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2018-11-04 16:27:22 +0100 |
commit | 0438f7a744dc2f091d580e0b1eba143e7da8966d (patch) | |
tree | 0cef3c5363d2a9f7a67e1b024908036c1a641222 /src | |
parent | ae25a95d6c65e3369fd441f91a96abadff10db16 (diff) | |
download | tdmtheme-0438f7a744dc2f091d580e0b1eba143e7da8966d.tar.gz tdmtheme-0438f7a744dc2f091d580e0b1eba143e7da8966d.zip |
Removed obsolete Qt2's TQList/TQListIterator classes and replaced
with TQt3's TQPtrList/TQPtrListIterator ones.
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 6bb681e8cba9f07d56b9a1cfe4908bd5391097b7)
Diffstat (limited to 'src')
-rw-r--r-- | src/tdmtheme.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tdmtheme.cpp b/src/tdmtheme.cpp index a451eb4..36973ee 100644 --- a/src/tdmtheme.cpp +++ b/src/tdmtheme.cpp @@ -307,7 +307,7 @@ void TDMThemeWidget::installNewTheme() return; } - TQList<KArchiveDirectory> foundThemes; + TQPtrList<KArchiveDirectory> foundThemes; KTar archive( themeTmpFile ); archive.open( IO_ReadOnly ); |