diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2021-11-05 18:54:42 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2021-11-05 18:54:42 +0900 |
commit | eb2210c94488f6c57159fede9a98891e4f3a1a52 (patch) | |
tree | 5a00e2f85696aef16ef7bf9c1655f0ca76243195 /core/polkittqt1-identity.h | |
parent | 58baf01dab5d45b890534bf8a1eb42d677332407 (diff) | |
download | polkit-tqt-eb2210c94488f6c57159fede9a98891e4f3a1a52.tar.gz polkit-tqt-eb2210c94488f6c57159fede9a98891e4f3a1a52.zip |
More conversion polkitqt1 -> polkit-tqt.
Started conversion of 'core' library module.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'core/polkittqt1-identity.h')
-rw-r--r-- | core/polkittqt1-identity.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/core/polkittqt1-identity.h b/core/polkittqt1-identity.h index 600eba5e8..2ea984eee 100644 --- a/core/polkittqt1-identity.h +++ b/core/polkittqt1-identity.h @@ -21,7 +21,7 @@ #ifndef POLKITTQT1_IDENTITY_H #define POLKITTQT1_IDENTITY_H -#include "polkittqt1-export.h" +#include "polkit-tqt-export.h" #include <unistd.h> @@ -33,13 +33,13 @@ typedef struct _PolkitUnixUser PolkitUnixUser; typedef struct _PolkitUnixGroup PolkitUnixGroup; /** - * \namespace PolkitTQt1 PolkitTQt + * \namespace PolkitTQt PolkitTQt * * \brief Namespace wrapping Polkit-TQt classes * * This namespace wraps all Polkit-TQt classes. */ -namespace PolkitTQt1 +namespace PolkitTQt { class UnixUserIdentity; @@ -56,7 +56,7 @@ class UnixGroupIdentity; * \see UnixGroup * \see UnixUser */ -class POLKITTQT1_EXPORT Identity +class POLKIT_TQT_EXPORT Identity { public: typedef TQList< Identity > List; @@ -103,7 +103,7 @@ protected: private: class Data; - TQExplicitlySharedDataPointer< Data > d; + Data *d; }; /** @@ -114,7 +114,7 @@ private: * \brief UNIX user identity * \sa Identity */ -class POLKITTQT1_EXPORT UnixUserIdentity : public Identity +class POLKIT_TQT_EXPORT UnixUserIdentity : public Identity { public: UnixUserIdentity(); @@ -164,7 +164,7 @@ public: * \brief UNIX group identity * \sa Identity */ -class POLKITTQT1_EXPORT UnixGroupIdentity : public Identity +class POLKIT_TQT_EXPORT UnixGroupIdentity : public Identity { public: UnixGroupIdentity(); |