summaryrefslogtreecommitdiffstats
path: root/src/smalldialogs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/smalldialogs.cpp')
-rw-r--r--src/smalldialogs.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/smalldialogs.cpp b/src/smalldialogs.cpp
index 006ffcf..b4436ae 100644
--- a/src/smalldialogs.cpp
+++ b/src/smalldialogs.cpp
@@ -552,11 +552,11 @@ void RegExpTester::slotRecalc()
}
- TQStringList tqparenthesesGroups;
- bool bSuccess = findParenthesesGroups( m_pHistoryEntryStartRegExpEdit->text(), tqparenthesesGroups );
+ TQStringList parenthesesGroups;
+ bool bSuccess = findParenthesesGroups( m_pHistoryEntryStartRegExpEdit->text(), parenthesesGroups );
if ( ! bSuccess )
{
- m_pHistoryEntryStartMatchResult->setText( i18n("Opening and closing tqparentheses don't match in regular expression.") );
+ m_pHistoryEntryStartMatchResult->setText( i18n("Opening and closing parentheses don't match in regular expression.") );
m_pHistorySortKeyResult->setText( i18n("") );
return;
}
@@ -566,7 +566,7 @@ void RegExpTester::slotRecalc()
if ( historyEntryStartRegExp.exactMatch( s ) )
{
m_pHistoryEntryStartMatchResult->setText( i18n("Match success.") );
- TQString key = calcHistorySortKey( m_pHistorySortKeyOrderEdit->text(),historyEntryStartRegExp,tqparenthesesGroups);
+ TQString key = calcHistorySortKey( m_pHistorySortKeyOrderEdit->text(),historyEntryStartRegExp,parenthesesGroups);
m_pHistorySortKeyResult->setText(key);
}
else