diff options
author | Michele Calgaro <[email protected]> | 2023-12-09 18:25:41 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-10 00:55:58 +0900 |
commit | 6a101aa2ef54f02a292d6c28f23e2554a72e2bce (patch) | |
tree | f09a5825791af56e09934f662c82894dd4544edb /libk3b/projects/datacd | |
parent | 386d824e48f9c050b839ba313234cf7fa1ba833f (diff) | |
download | k3b-6a101aa2ef54f02a292d6c28f23e2554a72e2bce.tar.gz k3b-6a101aa2ef54f02a292d6c28f23e2554a72e2bce.zip |
Remove various '#define' strings - part 6
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 766478630b5e0f435d8aef9ee7ba44651e4e431d)
Diffstat (limited to 'libk3b/projects/datacd')
-rw-r--r-- | libk3b/projects/datacd/k3bdatadoc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libk3b/projects/datacd/k3bdatadoc.cpp b/libk3b/projects/datacd/k3bdatadoc.cpp index d25e342..7f99ce6 100644 --- a/libk3b/projects/datacd/k3bdatadoc.cpp +++ b/libk3b/projects/datacd/k3bdatadoc.cpp @@ -1118,13 +1118,13 @@ void K3bDataDoc::prepareFilenamesInDir( K3bDirItem* dir ) void K3bDataDoc::informAboutNotFoundFiles() { if( !m_notFoundFiles.isEmpty() ) { - KMessageBox::informationList( TQT_TQWIDGET(tqApp->activeWindow()), i18n("Could not find the following files:"), + KMessageBox::informationList( tqApp->activeWindow(), i18n("Could not find the following files:"), m_notFoundFiles, i18n("Not Found") ); m_notFoundFiles.clear(); } if( !m_noPermissionFiles.isEmpty() ) { - KMessageBox::informationList( TQT_TQWIDGET(tqApp->activeWindow()), i18n("No permission to read the following files:"), + KMessageBox::informationList( tqApp->activeWindow(), i18n("No permission to read the following files:"), m_noPermissionFiles, i18n("No Read Permission") ); m_noPermissionFiles.clear(); |