summaryrefslogtreecommitdiffstats
path: root/kaddressbook/interfaces/extensionwidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kaddressbook/interfaces/extensionwidget.cpp')
-rw-r--r--kaddressbook/interfaces/extensionwidget.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kaddressbook/interfaces/extensionwidget.cpp b/kaddressbook/interfaces/extensionwidget.cpp
index 75622935c..bae99b03f 100644
--- a/kaddressbook/interfaces/extensionwidget.cpp
+++ b/kaddressbook/interfaces/extensionwidget.cpp
@@ -17,8 +17,8 @@
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
As a special exception, permission is given to link this program
- with any edition of Qt, and distribute the resulting executable,
- without including the source code for Qt in the source distribution.
+ with any edition of TQt, and distribute the resulting executable,
+ without including the source code for TQt in the source distribution.
*/
#include "core.h"
@@ -27,9 +27,9 @@
using namespace KAB;
-ExtensionWidget::ExtensionWidget( Core *core, TQWidget *parent,
+ExtensionWidget::ExtensionWidget( Core *core, TQWidget *tqparent,
const char *name )
- : TQWidget( parent, name ), mCore( core )
+ : TQWidget( tqparent, name ), mCore( core )
{
}
@@ -55,7 +55,7 @@ KABC::Addressee::List ExtensionWidget::selectedContacts()
TQStringList::ConstIterator it;
const TQStringList::ConstIterator endIt = uids.end();
for ( it = uids.begin(); it != endIt; ++it )
- list.append( mCore->addressBook()->tqfindByUid( *it ) );
+ list.append( mCore->addressBook()->findByUid( *it ) );
return list;
}