summaryrefslogtreecommitdiffstats
path: root/libkpgp/kpgpui.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
commit4c6f8d69e2d1501837affb472c4eb8fec4462240 (patch)
tree766a8ad7939fcf3eec534184c36bd0e0f80489e2 /libkpgp/kpgpui.cpp
parent469cc56a805bd3d6940d54adbef554877c29853c (diff)
downloadtdepim-4c6f8d69e2d1501837affb472c4eb8fec4462240.tar.gz
tdepim-4c6f8d69e2d1501837affb472c4eb8fec4462240.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkpgp/kpgpui.cpp')
-rw-r--r--libkpgp/kpgpui.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/libkpgp/kpgpui.cpp b/libkpgp/kpgpui.cpp
index eccc58e1..cb07abc4 100644
--- a/libkpgp/kpgpui.cpp
+++ b/libkpgp/kpgpui.cpp
@@ -205,7 +205,7 @@ Config::Config( TQWidget *tqparent, const char *name, bool encrypt )
msg = i18n( "<qt><p>When this option is enabled, the application will "
"always show you a list of public keys from which you can "
"choose the one it will use for encryption. If it is off, "
- "the application will only show the dialog if it cannot tqfind "
+ "the application will only show the dialog if it cannot find "
"the right key or if there are several which could be used. "
"</p></qt>" );
TQWhatsThis::add( showKeyApprovalDlg, msg );
@@ -432,7 +432,7 @@ void KeySelectionDialog::initKeylist( const KeyList& keyList,
(*it)->primaryUserID() );
// select and open the given key
- if( keyIds.tqfindIndex( curKeyId ) != -1 ) {
+ if( keyIds.findIndex( curKeyId ) != -1 ) {
if( 0 == firstSelectedItem ) {
firstSelectedItem = primaryUserID;
}
@@ -920,7 +920,7 @@ void KeySelectionDialog::slotCheckSelection( TQListViewItem* plvi /* = 0 */ )
// extended selection mode a normal left click deselects
// the not clicked items.
if( 0 < selectedCount ) {
- if( -1 == mKeyIds.tqfindIndex( lvi->text(0).local8Bit() ) ) {
+ if( -1 == mKeyIds.findIndex( lvi->text(0).local8Bit() ) ) {
// some items of this key are selected and the key wasn't selected
// before => the user selected something
kdDebug(5100) << "selectedCount: "<<selectedCount<<"/"<<itemCount
@@ -928,7 +928,7 @@ void KeySelectionDialog::slotCheckSelection( TQListViewItem* plvi /* = 0 */ )
userAction = SELECTED;
}
else if( ( itemCount > selectedCount ) &&
- ( -1 != mKeyIds.tqfindIndex( lvi->text(0).local8Bit() ) ) ) {
+ ( -1 != mKeyIds.findIndex( lvi->text(0).local8Bit() ) ) ) {
// some items of this key are unselected and the key was selected
// before => the user deselected something
kdDebug(5100) << "selectedCount: "<<selectedCount<<"/"<<itemCount