diff options
Diffstat (limited to 'kexi/plugins/macros/lib/metaparameter.h')
-rw-r--r-- | kexi/plugins/macros/lib/metaparameter.h | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/kexi/plugins/macros/lib/metaparameter.h b/kexi/plugins/macros/lib/metaparameter.h index ab2a4004..fa9df552 100644 --- a/kexi/plugins/macros/lib/metaparameter.h +++ b/kexi/plugins/macros/lib/metaparameter.h @@ -20,9 +20,9 @@ #ifndef KOMACRO_METAPARAMETER_H #define KOMACRO_METAPARAMETER_H -#include <qstring.h> -#include <qvariant.h> -#include <qobject.h> +#include <tqstring.h> +#include <tqvariant.h> +#include <tqobject.h> #include <ksharedptr.h> #include "komacro_export.h" @@ -34,10 +34,10 @@ namespace KoMacro { /** * Class to provide abstract methods for the undocumented - * Qt3 QUObject-API functionality. + * TQt3 TQUObject-API functionality. * - * The design tried to limit future porting to Qt4 by providing a - * somewhat similar API to the Qt4 QMeta* stuff. + * The design tried to limit future porting to TQt4 by providing a + * somewhat similar API to the TQt4 TQMeta* stuff. */ class KOMACRO_EXPORT MetaParameter : public KShared { @@ -45,29 +45,29 @@ namespace KoMacro { /** * Property to get the type of the variable. */ - Q_PROPERTY(Type type READ type) + TQ_PROPERTY(Type type READ type) /** * Property to get the type of the variable as string. */ - Q_PROPERTY(QString typeName READ typeName) + TQ_PROPERTY(TQString typeName READ typeName) public: /** * List of @a MetaParameter instances. */ - typedef QValueList<KSharedPtr <MetaParameter > > List; + typedef TQValueList<KSharedPtr <MetaParameter > > List; /** * Constructor. * * @param signatureargument The signatures argument * that will be used to determinate the arguments - * type. This could be something like "const QString&", - * "int" or "QMap < QString, QVariant > ". + * type. This could be something like "const TQString&", + * "int" or "TQMap < TQString, TQVariant > ". */ - explicit MetaParameter(const QString& signatureargument = QString::null); + explicit MetaParameter(const TQString& signatureargument = TQString()); /** * Destructor. @@ -79,8 +79,8 @@ namespace KoMacro { */ enum Type { TypeNone = 0, /// None type, the @a MetaParameter is empty. - TypeVariant, /// The @a MetaParameter is a QVariant. - TypeObject /// The @a MetaParameter is a QObject. + TypeVariant, /// The @a MetaParameter is a TQVariant. + TypeObject /// The @a MetaParameter is a TQObject. }; /** @@ -92,7 +92,7 @@ namespace KoMacro { * @return the @a MetaParameter::Type as string. The typename * could be "None", "Variant" or "Object". */ - const QString typeName() const; + const TQString typeName() const; /** * Set the @a MetaParameter::Type this variable is. @@ -102,12 +102,12 @@ namespace KoMacro { /** * @return the @a MetaParameter::Type this variable is. */ - QVariant::Type variantType() const; + TQVariant::Type variantType() const; /** * Set the @a MetaParameter::Type this variable is. */ - void setVariantType(QVariant::Type varianttype); + void setVariantType(TQVariant::Type varianttype); /** * @return true if the passed @a Variable @p variable is @@ -122,7 +122,7 @@ namespace KoMacro { * @internal used method to set the signature argument. Those * argument will be used to determinate the arguments type. */ - void setSignatureArgument(const QString& signatureargument); + void setSignatureArgument(const TQString& signatureargument); private: /// @internal d-pointer class. |