summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-08 18:03:12 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-08 18:03:12 +0900
commite9757c2d0e69b906d4064b144fe252f1555e3fe8 (patch)
tree3373ed3f7b62e0a94c6ee49b811be45226037575
parent20b95ae4b5c6bab9e88c333a28bade38bc07b1d6 (diff)
downloadkerberostray-e9757c2d0e69b906d4064b144fe252f1555e3fe8.tar.gz
kerberostray-e9757c2d0e69b906d4064b144fe252f1555e3fe8.zip
Replaced various '#define' with actual strings - part 6
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--src/toplevel.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/toplevel.cpp b/src/toplevel.cpp
index b848405..cfc6009 100644
--- a/src/toplevel.cpp
+++ b/src/toplevel.cpp
@@ -71,11 +71,11 @@ TopLevel::TopLevel() : KSystemTray(), ticketWatch(0), m_refreshTimer(0), m_reque
TDEConfig *config = kapp->config();
config->setGroup("Kerberos");
- getNewTGTAct = new TDEAction(i18n("&Obtain New Ticket Granting Ticket"), "add_user", 0, TQT_TQOBJECT(this), TQT_SLOT(getNewTGT()), actionCollection(), "getnewtgt");
- getNewSTAct = new TDEAction(i18n("&Obtain New Primary Service Ticket"), "add_user", 0, TQT_TQOBJECT(this), TQT_SLOT(getNewServiceTicket()), actionCollection(), "getnewserviceticket");
- getNewStandardSTAct = new TDEAction(i18n("&Obtain Authenticated Service Ticket"), "add_user", 0, TQT_TQOBJECT(this), TQT_SLOT(getNewServiceTicketWithExistingCreds()), actionCollection(), "getstandardserviceticket");
- destroyAllAct = new TDEAction(i18n("&Destroy All Tickets"), "delete_user", 0, TQT_TQOBJECT(this), TQT_SLOT(destroyAllTickets()), actionCollection(), "destroyall");
- confAct = new TDEAction(i18n("&Configure..."), "configure", 0, TQT_TQOBJECT(this), TQT_SLOT(config()), actionCollection(), "configure");
+ getNewTGTAct = new TDEAction(i18n("&Obtain New Ticket Granting Ticket"), "add_user", 0, this, TQT_SLOT(getNewTGT()), actionCollection(), "getnewtgt");
+ getNewSTAct = new TDEAction(i18n("&Obtain New Primary Service Ticket"), "add_user", 0, this, TQT_SLOT(getNewServiceTicket()), actionCollection(), "getnewserviceticket");
+ getNewStandardSTAct = new TDEAction(i18n("&Obtain Authenticated Service Ticket"), "add_user", 0, this, TQT_SLOT(getNewServiceTicketWithExistingCreds()), actionCollection(), "getstandardserviceticket");
+ destroyAllAct = new TDEAction(i18n("&Destroy All Tickets"), "delete_user", 0, this, TQT_SLOT(destroyAllTickets()), actionCollection(), "destroyall");
+ confAct = new TDEAction(i18n("&Configure..."), "configure", 0, this, TQT_SLOT(config()), actionCollection(), "configure");
// create app menu (displayed on right-click)
menu = new TQPopupMenu();