diff options
Diffstat (limited to 'src/renamedialog.cpp')
-rw-r--r-- | src/renamedialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/renamedialog.cpp b/src/renamedialog.cpp index 5724112..abd3057 100644 --- a/src/renamedialog.cpp +++ b/src/renamedialog.cpp @@ -49,7 +49,7 @@ RenameDialog::RenameDialog(const KURL::List& items) : // case, add this postfix to the name suggestion. postfix.insert(0, '.'); for (int i = 1; i < itemCount; ++i) { - if (!items[i].prettyURL().tqcontains(postfix)) { + if (!items[i].prettyURL().contains(postfix)) { // at least one item does not have the same postfix postfix.truncate(0); break; @@ -79,7 +79,7 @@ RenameDialog::~RenameDialog() void RenameDialog::slotOk() { m_newName = m_lineEdit->text(); - if (m_newName.tqcontains('#') != 1) { + if (m_newName.contains('#') != 1) { m_newName.truncate(0); } |