diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/AuthDialog.cpp | 32 | ||||
-rw-r--r-- | src/main.cpp | 16 |
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(); |