summaryrefslogtreecommitdiffstats
path: root/libk3b/projects/datacd
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-02-25 14:22:05 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-02-25 21:28:35 +0900
commit0d811e3e031a8c5f8bbdd292e8795bf192ea2454 (patch)
treed52fcb21a4537960a072815c026d8dd9f2255dbb /libk3b/projects/datacd
parentf989f27b342d311a95695cc4120b1d22e55d02b0 (diff)
downloadk3b-0d811e3e.tar.gz
k3b-0d811e3e.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit f5c200ccf0f8066dbbbc38cf36af10bdc54f5a45)
Diffstat (limited to 'libk3b/projects/datacd')
-rw-r--r--libk3b/projects/datacd/k3bfileitem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libk3b/projects/datacd/k3bfileitem.cpp b/libk3b/projects/datacd/k3bfileitem.cpp
index 3e20982..8474aeb 100644
--- a/libk3b/projects/datacd/k3bfileitem.cpp
+++ b/libk3b/projects/datacd/k3bfileitem.cpp
@@ -68,7 +68,7 @@ K3bFileItem::K3bFileItem( const TQString& filePath, K3bDataDoc* doc, K3bDirItem*
m_k3bName = k3bName;
// we determine the size here to avoid problems with removed or renamed files
- // we need to use lstat here since for symlinks both KDE and QT return the size of the file pointed to
+ // we need to use lstat here since for symlinks both TDE and TQt return the size of the file pointed to
// instead the size of the link.
k3b_struct_stat statBuf;
if( k3b_lstat( TQFile::encodeName(filePath), &statBuf ) ) {