From fd5d099065a748cac49e20a13481f85666c53c71 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 1 Feb 2013 15:14:12 -0600 Subject: Rename a number of classes to enhance compatibility with KDE4 --- kontact/interfaces/plugin.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'kontact/interfaces/plugin.cpp') diff --git a/kontact/interfaces/plugin.cpp b/kontact/interfaces/plugin.cpp index 9d9445e9..ae7efa52 100644 --- a/kontact/interfaces/plugin.cpp +++ b/kontact/interfaces/plugin.cpp @@ -40,8 +40,8 @@ class Plugin::Private public: Kontact::Core *core; DCOPClient *dcopClient; - TQPtrList *newActions; - TQPtrList *syncActions; + TQPtrList *newActions; + TQPtrList *syncActions; TQString identifier; TQString title; TQString icon; @@ -61,8 +61,8 @@ Plugin::Plugin( Kontact::Core *core, TQObject *parent, const char *name ) d->core = core; d->dcopClient = 0; - d->newActions = new TQPtrList; - d->syncActions = new TQPtrList; + d->newActions = new TQPtrList; + d->syncActions = new TQPtrList; d->hasPart = true; d->part = 0; d->disabled = false; @@ -173,22 +173,22 @@ DCOPClient* Plugin::dcopClient() const return d->dcopClient; } -void Plugin::insertNewAction( KAction *action ) +void Plugin::insertNewAction( TDEAction *action ) { d->newActions->append( action ); } -void Plugin::insertSyncAction( KAction *action ) +void Plugin::insertSyncAction( TDEAction *action ) { d->syncActions->append( action ); } -TQPtrList *Plugin::newActions() const +TQPtrList *Plugin::newActions() const { return d->newActions; } -TQPtrList *Plugin::syncActions() const +TQPtrList *Plugin::syncActions() const { return d->syncActions; } -- cgit v1.2.3