summaryrefslogtreecommitdiffstats
path: root/libk3b/projects/datacd/k3bfileitem.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-02-25 14:22:05 +0900
committerMichele Calgaro <[email protected]>2024-02-25 19:22:15 +0900
commitf5c200ccf0f8066dbbbc38cf36af10bdc54f5a45 (patch)
treea608cd53eaf5e7a04fc236776c996cd4940b392c /libk3b/projects/datacd/k3bfileitem.cpp
parent7762265fa07270431bf3673b776ffd73c5eba19d (diff)
downloadk3b-f5c200ccf0f8066dbbbc38cf36af10bdc54f5a45.tar.gz
k3b-f5c200ccf0f8066dbbbc38cf36af10bdc54f5a45.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'libk3b/projects/datacd/k3bfileitem.cpp')
-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 ) ) {