diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:02:43 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:02:43 -0600 |
commit | aea627236e4de24599c3e30617cf264c3c1b7d40 (patch) | |
tree | 467e13ca5a7eb0ab292259289ecc3572f53c5eae /kexi/core/kexiuseraction.h | |
parent | 786304c6211f35ddc4cdd54b7aa7985fef4a2e70 (diff) | |
download | koffice-aea627236e4de24599c3e30617cf264c3c1b7d40.tar.gz koffice-aea627236e4de24599c3e30617cf264c3c1b7d40.zip |
Rename a number of classes to enhance compatibility with KDE4
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(); |