diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-10-17 23:25:59 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-10-17 23:25:59 +0900 |
commit | 6bb681e8cba9f07d56b9a1cfe4908bd5391097b7 (patch) | |
tree | c16eb1dfdd2e59f7ecf7f4771ec3cb897299a888 | |
parent | 310c4e33132b35298aa4e9b446147d765e8b9efc (diff) | |
download | tdmtheme-6bb681e8cba9f07d56b9a1cfe4908bd5391097b7.tar.gz tdmtheme-6bb681e8cba9f07d56b9a1cfe4908bd5391097b7.zip |
Removed obsolete Qt2's TQList/TQListIterator classes and replaced
with TQt3's TQPtrList/TQPtrListIterator ones.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-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 ); |