diff options
author | Michele Calgaro <[email protected]> | 2023-12-21 11:50:25 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-24 18:52:15 +0900 |
commit | 51f2e0ff8cb13efa4f5d1d2574940f080a4f3934 (patch) | |
tree | 35063f9531a9d686aca0b50a1dd2ce899e2bb0c9 /krfb | |
parent | 4be03979c04f7469f18d32a60487f511cc046417 (diff) | |
download | tdenetwork-51f2e0ff8cb13efa4f5d1d2574940f080a4f3934.tar.gz tdenetwork-51f2e0ff8cb13efa4f5d1d2574940f080a4f3934.zip |
Replace various '#define' strings - part 6
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 418e8f7a6f6d79b2cbc9d83b29ef53d01582f826)
Diffstat (limited to 'krfb')
-rw-r--r-- | krfb/krfb/trayicon.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/krfb/krfb/trayicon.cpp b/krfb/krfb/trayicon.cpp index 7464fd03..92d0d494 100644 --- a/krfb/krfb/trayicon.cpp +++ b/krfb/krfb/trayicon.cpp @@ -61,7 +61,7 @@ TrayIcon::TrayIcon(KDialog *d, Configuration *c) : TQToolTip::add(this, i18n("Desktop Sharing - connecting")); manageInvitationsAction = new TDEAction(i18n("Manage &Invitations"), TQString(), - 0, TQT_TQOBJECT(this), TQT_SIGNAL(showManageInvitations()), + 0, this, TQT_SIGNAL(showManageInvitations()), &actionCollection); manageInvitationsAction->plug(contextMenu()); @@ -75,7 +75,7 @@ TrayIcon::TrayIcon(KDialog *d, Configuration *c) : contextMenu()->insertSeparator(); - aboutAction = KStdAction::aboutApp(TQT_TQOBJECT(this), TQT_SLOT(showAbout()), &actionCollection); + aboutAction = KStdAction::aboutApp(this, TQT_SLOT(showAbout()), &actionCollection); aboutAction->plug(contextMenu()); show(); |