summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2021-12-17 19:56:10 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2021-12-19 20:05:50 +0900
commit5dec9a4c64674f48381c6e923d2af68b4e7bf92d (patch)
tree7ebd02e915396b4b63f666091871038755064f6c /src
parent35181c8a0f3b1e381a53b59bb327c477e55c0178 (diff)
downloadpolkit-agent-tde-5dec9a4c64674f48381c6e923d2af68b4e7bf92d.tar.gz
polkit-agent-tde-5dec9a4c64674f48381c6e923d2af68b4e7bf92d.zip
Raw KDE->TDE conversion using tde/scripts/conversions/kde-tde/convert_existing_kde3_app_to_tde
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src')
-rw-r--r--src/AuthDialog.cpp32
-rw-r--r--src/main.cpp16
2 files changed, 24 insertions, 24 deletions
diff --git a/src/AuthDialog.cpp b/src/AuthDialog.cpp
index 7363ae9..e90a851 100644
--- a/src/AuthDialog.cpp
+++ b/src/AuthDialog.cpp
@@ -28,7 +28,7 @@
#include <TQtGui/TQStandardItemModel>
#include <KDebug>
-#include <KToolInvocation>
+#include <TDEToolInvocation>
#include <KUser>
#include <PolkitTQt1/Authority>
@@ -71,20 +71,20 @@ AuthDialog::AuthDialog(const TQString &actionId,
}
// loads the standard key icon
- TQPixmap icon = KIconLoader::global()->loadIcon("dialog-password",
- KIconLoader::NoGroup,
- KIconLoader::SizeHuge,
- KIconLoader::DefaultState);
+ TQPixmap icon = TDEIconLoader::global()->loadIcon("dialog-password",
+ TDEIconLoader::NoGroup,
+ TDEIconLoader::SizeHuge,
+ TDEIconLoader::DefaultState);
// create a painter to paint the action icon over the key icon
TQPainter painter(&icon);
const int iconSize = icon.size().width();
// the the emblem icon to size 32
int overlaySize = 32;
// try to load the action icon
- const TQPixmap pixmap = KIconLoader::global()->loadIcon(iconName,
- KIconLoader::NoGroup,
+ const TQPixmap pixmap = TDEIconLoader::global()->loadIcon(iconName,
+ TDEIconLoader::NoGroup,
overlaySize,
- KIconLoader::DefaultState,
+ TDEIconLoader::DefaultState,
TQStringList(),
0,
true);
@@ -215,12 +215,12 @@ void AuthDialog::createUserCB(const PolkitTQt1::Identity::List &identities)
display = user.loginName();
}
- KIcon icon;
+ TDEIcon icon;
// load user icon face
if (!user.faceIconPath().isEmpty()) {
- icon = KIcon(user.faceIconPath());
+ icon = TDEIcon(user.faceIconPath());
} else {
- icon = KIcon("user-identity");
+ icon = TDEIcon("user-identity");
}
// appends the user item
userCB->addItem(icon, display, qVariantFromValue<TQString> (identity.toString()));
@@ -294,10 +294,10 @@ void AuthDialog::showEvent(TQShowEvent *event)
KNotification::Persistent | KNotification::CloseWhenWidgetActivated);
kDebug() << "Notificate: " << notification->eventId();
notification->setText(m_message);
- TQPixmap icon = KIconLoader::global()->loadIcon("dialog-password",
- KIconLoader::NoGroup,
- KIconLoader::SizeHuge,
- KIconLoader::DefaultState);
+ TQPixmap icon = TDEIconLoader::global()->loadIcon("dialog-password",
+ TDEIconLoader::NoGroup,
+ TDEIconLoader::SizeHuge,
+ TDEIconLoader::DefaultState);
notification->setPixmap(icon);
notification->setActions(TQStringList() << i18n("Switch to dialog") << i18n("Cancel"));
@@ -366,7 +366,7 @@ AuthDetails::AuthDetails(const PolkitTQt1::Details &details,
void AuthDetails::openUrl(const TQString& url)
{
- KToolInvocation::invokeBrowser(url);
+ TDEToolInvocation::invokeBrowser(url);
}
void AuthDetails::openAction(const TQString &url)
diff --git a/src/main.cpp b/src/main.cpp
index ec9ca54..414275d 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -18,29 +18,29 @@
*/
-#include <KCmdLineArgs>
-#include <KAboutData>
-#include <KLocale>
-#include <KCrash>
+#include <TDECmdLineArgs>
+#include <TDEAboutData>
+#include <TDELocale>
+#include <TDECrash>
#include "policykitkde.h"
int main(int argc, char *argv[])
{
- KAboutData aboutData("Polkit1AuthAgent", "polkit-kde-authentication-agent-1", ki18n("PolicyKit1-KDE"), "0.99.0",
- ki18n("PolicyKit1-KDE"), KAboutData::License_GPL,
+ TDEAboutData aboutData("Polkit1AuthAgent", "polkit-kde-authentication-agent-1", ki18n("PolicyKit1-KDE"), "0.99.0",
+ ki18n("PolicyKit1-KDE"), TDEAboutData::License_GPL,
ki18n("(c) 2009 Red Hat, Inc."));
aboutData.addAuthor(ki18n("Jaroslav Reznik"), ki18n("Maintainer"), "jreznik@redhat.com");
aboutData.setProductName("policykit-kde/polkit-kde-authentication-agent-1");
- KCmdLineArgs::init(argc, argv, &aboutData);
+ TDECmdLineArgs::init(argc, argv, &aboutData);
if (!PolicyKitKDE::start()) {
tqWarning("PolicyKitKDE is already running!\n");
return 0;
}
- KCrash::setFlags(KCrash::AutoRestart);
+ TDECrash::setFlags(TDECrash::AutoRestart);
PolicyKitKDE agent;
agent.disableSessionManagement();