diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2021-10-30 13:47:29 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2021-10-30 13:47:29 +0900 |
commit | e8494e60efeb94c67c813d1c1c038031915e8c17 (patch) | |
tree | 3238b3e8ceeb577a8eda00da66704c7e5fc6f9f5 /core/polkitqt1-details.h | |
parent | 28de2ff84f59ac0b173670aa9c5331bc77c1e63f (diff) | |
download | polkit-tqt-e8494e60efeb94c67c813d1c1c038031915e8c17.tar.gz polkit-tqt-e8494e60efeb94c67c813d1c1c038031915e8c17.zip |
Raw Qt->TQt conversion using tde/scripts/conversions/qt3-tqt3/convert_existing_qt3_app_to_tqt3.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'core/polkitqt1-details.h')
-rw-r--r-- | core/polkitqt1-details.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/core/polkitqt1-details.h b/core/polkitqt1-details.h index dc55f854c..2cb18163c 100644 --- a/core/polkitqt1-details.h +++ b/core/polkitqt1-details.h @@ -23,19 +23,19 @@ #include "polkitqt1-export.h" -#include <QtCore/QObject> -#include <QtCore/QSharedData> +#include <TQtCore/TQObject> +#include <TQtCore/TQSharedData> typedef struct _PolkitDetails PolkitDetails; /** - * \namespace PolkitQt1 PolkitQt + * \namespace PolkitTQt1 PolkitTQt * - * \brief Namespace wrapping Polkit-Qt classes + * \brief Namespace wrapping Polkit-TQt classes * - * This namespace wraps all Polkit-Qt classes. + * This namespace wraps all Polkit-TQt classes. */ -namespace PolkitQt1 +namespace PolkitTQt1 { /** @@ -69,9 +69,9 @@ public: * Get the value for \p key * * \param key A key - * \return Value of the key \p key, otherwise empty QString. + * \return Value of the key \p key, otherwise empty TQString. */ - QString lookup(const QString &key) const; + TQString lookup(const TQString &key) const; /** * Inserts key \p key with value \p value. @@ -79,17 +79,17 @@ public: * \param key A key. * \param value A value. */ - void insert(const QString &key, const QString &value); + void insert(const TQString &key, const TQString &value); /** * Gets a list of all keys. * * \return List of all keys. */ - QStringList keys() const; + TQStringList keys() const; private: class Data; - QExplicitlySharedDataPointer< Data > d; + TQExplicitlySharedDataPointer< Data > d; }; } |