summaryrefslogtreecommitdiffstats
path: root/kexi/plugins/forms/kexiformeventhandler.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 23:12:56 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 23:12:56 -0600
commitece35c015c54312eb13f583cc247cdd9a4051b4d (patch)
tree2c0599b8705e881f2b53678f48e97ffe4f616d22 /kexi/plugins/forms/kexiformeventhandler.h
parentc260bb1b22af487f2410c2c7f6c35db3fe1d57b9 (diff)
downloadkoffice-ece35c015c54312eb13f583cc247cdd9a4051b4d.tar.gz
koffice-ece35c015c54312eb13f583cc247cdd9a4051b4d.zip
Rename many classes and header files to avoid conflicts with KDE4
Diffstat (limited to 'kexi/plugins/forms/kexiformeventhandler.h')
-rw-r--r--kexi/plugins/forms/kexiformeventhandler.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/kexi/plugins/forms/kexiformeventhandler.h b/kexi/plugins/forms/kexiformeventhandler.h
index 69b9a20cf..d7063b19b 100644
--- a/kexi/plugins/forms/kexiformeventhandler.h
+++ b/kexi/plugins/forms/kexiformeventhandler.h
@@ -21,7 +21,7 @@
#define KEXIFORMEVENTHANDLER_H
#include <tqwidget.h>
-#include <kaction.h>
+#include <tdeaction.h>
class KexiMainWindow;
namespace KexiPart {
@@ -65,19 +65,19 @@ class KEXIFORMUTILS_EXPORT KexiFormEventAction : public TDEAction
/*! Decodes action string into action type/action argument parts.
Action string has to be in a form of "actiontype:actionarg"
- - Action type is passed to \a actionType on success. Action type can be "kaction"
+ - Action type is passed to \a actionType on success. Action type can be "tdeaction"
or any of the part names (see KexiPart::Info::objectName()), e.g. "table", "query", etc.
- - Action argument can be an action name in case of "kaction" type or object name
+ - Action argument can be an action name in case of "tdeaction" type or object name
in case of action of type "table", "query", etc.
\a ok is set to true on success and to false on failure. On failure no other
values are passed.
- \return part info if action type is "table", "query", etc., or 0 for "kaction" type. */
+ \return part info if action type is "table", "query", etc., or 0 for "tdeaction" type. */
KexiPart::Info* decodeString(TQString& actionType, TQString& actionArg, bool& ok) const;
//! \return true if the action is empty
bool isEmpty() const;
- TQString string; //!< action string with prefix, like "kaction:edit_copy" or "table:<tableName>"
+ TQString string; //!< action string with prefix, like "tdeaction:edit_copy" or "table:<tableName>"
TQString option; //!< option used when name is "table/query/etc.:\<objectName\>" is set;
//!< can be set to "open", "design", "editText", etc.