summaryrefslogtreecommitdiffstats
path: root/juk/tagtransactionmanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'juk/tagtransactionmanager.cpp')
-rw-r--r--juk/tagtransactionmanager.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/juk/tagtransactionmanager.cpp b/juk/tagtransactionmanager.cpp
index c816f2f4..ee1bd7ca 100644
--- a/juk/tagtransactionmanager.cpp
+++ b/juk/tagtransactionmanager.cpp
@@ -135,7 +135,7 @@ bool TagTransactionManager::renameFile(const TQFileInfo &from, const TQFileInfo
if(!to.exists() ||
KMessageBox::warningContinueCancel(
- TQT_TQWIDGET(parent()),
+ static_cast<TQWidget*>(parent()),
i18n("This file already exists.\nDo you want to replace it?"),
i18n("File Exists"),i18n("Replace")) == KMessageBox::Continue)
{
@@ -190,7 +190,7 @@ bool TagTransactionManager::processChangeList(bool undo)
errorItems.append(str);
}
- kapp->processEvents();
+ tdeApp->processEvents();
}
undo ? m_undoList.clear() : m_list.clear();
@@ -200,7 +200,7 @@ bool TagTransactionManager::processChangeList(bool undo)
action("edit_undo")->setEnabled(false);
if(!errorItems.isEmpty())
- KMessageBox::errorList(TQT_TQWIDGET(parent()),
+ KMessageBox::errorList(static_cast<TQWidget*>(parent()),
i18n("The following files were unable to be changed."),
errorItems,
i18n("Error"));