diff options
Diffstat (limited to 'core/polkitqt1-actiondescription.h')
-rw-r--r-- | core/polkitqt1-actiondescription.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/core/polkitqt1-actiondescription.h b/core/polkitqt1-actiondescription.h index deed65d6e..fac4812fb 100644 --- a/core/polkitqt1-actiondescription.h +++ b/core/polkitqt1-actiondescription.h @@ -24,13 +24,13 @@ #include "polkitqt1-export.h" -#include <QtCore/QList> -#include <QtCore/QMetaType> -#include <QtCore/QSharedData> +#include <TQtCore/TQList> +#include <TQtCore/TQMetaType> +#include <TQtCore/TQSharedData> typedef struct _PolkitActionDescription PolkitActionDescription; -namespace PolkitQt1 +namespace PolkitTQt1 { /** * \class ActionDescription polkitqt1-actiondescription.h ActionDescription @@ -59,7 +59,7 @@ public: Authorized = 5 }; - typedef QList< ActionDescription > List; + typedef TQList< ActionDescription > List; ActionDescription(); /** @@ -80,42 +80,42 @@ public: * * \return id of the action */ - QString actionId() const; + TQString actionId() const; /** * \brief Gets the description used of ActionDescription * * \return description of the action */ - QString description() const; + TQString description() const; /** * \brief Gets the message user for ActionDescription * * \return action message */ - QString message() const; + TQString message() const; /** * \brief Gets the vendor name for ActionDescription, if any * * \return vendor name */ - QString vendorName() const; + TQString vendorName() const; /** * \brief Gets the vendor URL for ActionDescription, if any * - * \return vendor URL or empty QString if there is no vendor URL + * \return vendor URL or empty TQString if there is no vendor URL */ - QString vendorUrl() const; + TQString vendorUrl() const; /** * \brief Gets the icon name for ActionDescription, if any * - * \return icon name or empty QString if there is no icon + * \return icon name or empty TQString if there is no icon */ - QString iconName() const; + TQString iconName() const; /** * \brief Gets the implicit authorization for ActionDescription used for any subject @@ -140,10 +140,10 @@ public: private: class Data; - QSharedDataPointer< Data > d; + TQSharedDataPointer< Data > d; }; } -Q_DECLARE_METATYPE(PolkitQt1::ActionDescription::List) +Q_DECLARE_METATYPE(PolkitTQt1::ActionDescription::List) #endif //POLKIT_QT_ACTION_DESCRIPTION_H |