summaryrefslogtreecommitdiffstats
path: root/amarok/src/deletedialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'amarok/src/deletedialog.cpp')
-rw-r--r--amarok/src/deletedialog.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/amarok/src/deletedialog.cpp b/amarok/src/deletedialog.cpp
index 631bd319..970526c5 100644
--- a/amarok/src/deletedialog.cpp
+++ b/amarok/src/deletedialog.cpp
@@ -41,8 +41,8 @@
// DeleteWidget implementation
//////////////////////////////////////////////////////////////////////////////
-DeleteWidget::DeleteWidget(TQWidget *tqparent, const char *name)
- : DeleteDialogBase(tqparent, name)
+DeleteWidget::DeleteWidget(TQWidget *parent, const char *name)
+ : DeleteDialogBase(parent, name)
{
KConfigGroup messageGroup(KGlobal::config(), "FileRemover");
@@ -84,8 +84,8 @@ void DeleteWidget::slotShouldDelete(bool shouldDelete)
// DeleteDialog implementation
//////////////////////////////////////////////////////////////////////////////
-DeleteDialog::DeleteDialog(TQWidget *tqparent, const char *name) :
- KDialogBase(Swallow, WStyle_DialogBorder, tqparent, name,
+DeleteDialog::DeleteDialog(TQWidget *parent, const char *name) :
+ KDialogBase(Swallow, WStyle_DialogBorder, parent, name,
true /* modal */, i18n("About to delete selected files"),
Ok | Cancel, Cancel /* Default */, true /* separator */),
m_trashGuiItem(i18n("&Send to Trash"), "trashcan_full")
@@ -131,9 +131,9 @@ void DeleteDialog::slotShouldDelete(bool shouldDelete)
setButtonGuiItem(Ok, shouldDelete ? KStdGuiItem::del() : m_trashGuiItem);
}
-bool DeleteDialog::showTrashDialog(TQWidget* tqparent, const KURL::List& files)
+bool DeleteDialog::showTrashDialog(TQWidget* parent, const KURL::List& files)
{
- DeleteDialog dialog(tqparent);
+ DeleteDialog dialog(parent);
bool doDelete = dialog.confirmDeleteList(files);
if( doDelete )