summaryrefslogtreecommitdiffstats
path: root/src/smalldialogs.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
commit3d7cc5d294c8da55ecaefe7a9f5631a72adc610e (patch)
tree8e35d69acd1a1c54d9d1b55724c3e72aa69df9e5 /src/smalldialogs.cpp
parente239d13ed0d22108025907f02d0b659555b137a7 (diff)
downloadkdiff3-3d7cc5d294c8da55ecaefe7a9f5631a72adc610e.tar.gz
kdiff3-3d7cc5d294c8da55ecaefe7a9f5631a72adc610e.zip
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...] tqinvalidate[...] tqparent[...] tqmask[...] tqlayout[...] tqalignment[...] git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kdiff3@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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