diff options
author | Michele Calgaro <[email protected]> | 2021-11-05 18:54:42 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2021-11-05 18:54:42 +0900 |
commit | eb2210c94488f6c57159fede9a98891e4f3a1a52 (patch) | |
tree | 5a00e2f85696aef16ef7bf9c1655f0ca76243195 /core/polkittqt1-identity.cpp | |
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 <[email protected]>
Diffstat (limited to 'core/polkittqt1-identity.cpp')
-rw-r--r-- | core/polkittqt1-identity.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/polkittqt1-identity.cpp b/core/polkittqt1-identity.cpp index 8be2b55dc..b2fc5fa0b 100644 --- a/core/polkittqt1-identity.cpp +++ b/core/polkittqt1-identity.cpp @@ -24,7 +24,7 @@ #include <TQtCore/TQDebug> -namespace PolkitTQt1 +namespace PolkitTQt { class Identity::Data : public TQSharedData @@ -66,7 +66,7 @@ Identity::Identity(PolkitIdentity *polkitIdentity) } } -Identity::Identity(const PolkitTQt1::Identity& other) +Identity::Identity(const PolkitTQt::Identity& other) : d(other.d) { @@ -76,7 +76,7 @@ Identity::~Identity() { } -Identity& Identity::operator=(const PolkitTQt1::Identity& other) +Identity& Identity::operator=(const PolkitTQt::Identity& other) { d = other.d; return *this; |