diff options
author | Michele Calgaro <[email protected]> | 2021-11-12 22:58:55 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2021-11-12 22:58:55 +0900 |
commit | 8f1d08da58bce00523534cf39807732f7dee91ce (patch) | |
tree | 89b1626237ca159c85e9489330bd24bc10040a6b /agent/listeneradapter.cpp | |
parent | 4606c91f4c62ae540df8edca973c2c5e405227d7 (diff) | |
download | polkit-tqt-8f1d08da58bce00523534cf39807732f7dee91ce.tar.gz polkit-tqt-8f1d08da58bce00523534cf39807732f7dee91ce.zip |
More PolkitTQt1 -> PolkitTQt renaming.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'agent/listeneradapter.cpp')
-rw-r--r-- | agent/listeneradapter.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/agent/listeneradapter.cpp b/agent/listeneradapter.cpp index 7a531dfd5..968704e37 100644 --- a/agent/listeneradapter.cpp +++ b/agent/listeneradapter.cpp @@ -23,7 +23,7 @@ #define POLKIT_AGENT_I_KNOW_API_IS_SUBJECT_TO_CHANGE 1 #include <polkitagent/polkitagent.h> -namespace PolkitTQt1 +namespace PolkitTQt { namespace Agent @@ -84,13 +84,13 @@ void ListenerAdapter::polkit_tqt_listener_initiate_authentication(PolkitAgentLis { tqDebug() << "polkit_tqt_listener_initiate_authentication callback for " << listener; - PolkitTQt1::Identity::List idents; - PolkitTQt1::Details dets(details); + PolkitTQt::Identity::List idents; + PolkitTQt::Details dets(details); Listener *list = findListener(listener); for (GList *identity = g_list_first(identities); identity != NULL; identity = g_list_next(identity)) { - idents.append(PolkitTQt1::Identity((PolkitIdentity *)identity->data)); + idents.append(PolkitTQt::Identity((PolkitIdentity *)identity->data)); } list->initiateAuthentication(TQString::fromUtf8(action_id), |