diff options
Diffstat (limited to 'kexi/core/kexiuseraction.h')
-rw-r--r-- | kexi/core/kexiuseraction.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kexi/core/kexiuseraction.h b/kexi/core/kexiuseraction.h index 57b82984..602d5751 100644 --- a/kexi/core/kexiuseraction.h +++ b/kexi/core/kexiuseraction.h @@ -16,7 +16,7 @@ typedef TQValueVector<TQVariant> Arguments; the actions can have some predefined \ref Methods which are described in \ref KexiUserActionMethod e.g. OpenObject, ExecuteScript ... those methods take different arguments also described in \ref KexiUserActionMethod */ -class KEXICORE_EXPORT KexiUserAction : public KAction +class KEXICORE_EXPORT KexiUserAction : public TDEAction { Q_OBJECT @@ -48,7 +48,7 @@ class KEXICORE_EXPORT KexiUserAction : public KAction /*! constructs an action \note methods are associated using setMethod() */ - KexiUserAction(KexiMainWindow *context, KActionCollection *parent, const TQString &name, const TQString &text, const TQString &pixmap); + KexiUserAction(KexiMainWindow *context, TDEActionCollection *parent, const TQString &name, const TQString &text, const TQString &pixmap); ~KexiUserAction(); /*! sets execution information associated with this action this will mostly look like @@ -64,11 +64,11 @@ class KEXICORE_EXPORT KexiUserAction : public KAction /*! creates a KexiUserAction from current record in \a c mostly needed for creation from kexi__useractions table */ - static KexiUserAction *fromCurrentRecord(KexiMainWindow *context, KActionCollection *parent, KexiDB::Cursor *c); + static KexiUserAction *fromCurrentRecord(KexiMainWindow *context, TDEActionCollection *parent, KexiDB::Cursor *c); protected slots: /*! actually executes the associated method - \note KexiUserAction automatically connects KAction::activated() to KexiUserAction::execute() + \note KexiUserAction automatically connects TDEAction::activated() to KexiUserAction::execute() */ void execute(); |