diff options
Diffstat (limited to 'juk/filerenamer.cpp')
-rw-r--r-- | juk/filerenamer.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/juk/filerenamer.cpp b/juk/filerenamer.cpp index cf3866b0..6f479313 100644 --- a/juk/filerenamer.cpp +++ b/juk/filerenamer.cpp @@ -60,8 +60,8 @@ class ConfirmationDialog : public KDialogBase { public: ConfirmationDialog(const TQMap<TQString, TQString> &files, - TQWidget *tqparent = 0, const char *name = 0) - : KDialogBase(tqparent, name, true, i18n("Warning"), Ok | Cancel) + TQWidget *parent = 0, const char *name = 0) + : KDialogBase(parent, name, true, i18n("Warning"), Ok | Cancel) { TQVBox *vbox = makeVBoxMainWidget(); TQHBox *hbox = new TQHBox(vbox); @@ -224,8 +224,8 @@ bool ConfigCategoryReader::isDisabled(const CategoryID &category) const // Implementation of FileRenamerWidget // -FileRenamerWidget::FileRenamerWidget(TQWidget *tqparent) : - FileRenamerBase(tqparent), CategoryReaderInterface(), +FileRenamerWidget::FileRenamerWidget(TQWidget *parent) : + FileRenamerBase(parent), CategoryReaderInterface(), m_exampleFromFile(false) { TQLabel *temp = new TQLabel(0); @@ -412,7 +412,7 @@ bool FileRenamerWidget::removeRow(unsigned id) // The checkbox is contained within a tqlayout widget, so the tqlayout // widget is the one the needs to die. - delete m_folderSwitches[checkboxPosition]->tqparent(); + delete m_folderSwitches[checkboxPosition]->parent(); m_folderSwitches.erase(&m_folderSwitches[checkboxPosition]); // Go through all the rows and if they have the same category and a |