From f2bf4eafc0aad961e37755f6b116ba7fb5593691 Mon Sep 17 00:00:00 2001 From: Peter Penz Date: Thu, 10 Jan 2008 16:14:41 +0000 Subject: Fixed issue that when renaming a variable number of items, that only one #-character as index is allowed. BUG: 155249 svn path=/trunk/KDE/kdebase/apps/; revision=759454 --- src/renamedialog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/renamedialog.cpp') diff --git a/src/renamedialog.cpp b/src/renamedialog.cpp index adfc48676..fa5bf60e0 100644 --- a/src/renamedialog.cpp +++ b/src/renamedialog.cpp @@ -116,9 +116,9 @@ void RenameDialog::slotButtonClicked(int button) if (m_newName.isEmpty()) { m_errorString = i18nc("@info:status", "The new name is empty. A name with at least one character must be entered."); - } else if (!m_renameOneItem && m_newName.count('#') != 1) { + } else if (!m_renameOneItem && (m_newName.count('#') == 0)) { m_newName.truncate(0); - m_errorString = i18nc("@info:status", "The name must contain exactly one # character."); + m_errorString = i18nc("@info:status", "The name must contain at least one # character."); } } -- cgit v1.3