diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-04 10:29:57 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-07 14:50:49 +0900 |
| commit | af5c111443c0462764799c889d500b814e2cb64b (patch) | |
| tree | b66cee032029d678e6ced6f3402cb7d310aa33c5 /src/knowittray.cpp | |
| parent | 2f7d0721945d00c7970409c6944a2f80ea1487a9 (diff) | |
| download | knowit-af5c1114.tar.gz knowit-af5c1114.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 5ec91497d4e10770e3cf509373dc8cfb7116848f)
Diffstat (limited to 'src/knowittray.cpp')
| -rw-r--r-- | src/knowittray.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/knowittray.cpp b/src/knowittray.cpp index a09d6c0..a0c72e8 100644 --- a/src/knowittray.cpp +++ b/src/knowittray.cpp @@ -22,12 +22,12 @@ KnowitTray::KnowitTray (TQWidget* parent, const char* name) : KSystemTray(parent, name) { contextMenu()->insertItem(i18n("&Undock"), parent, - TQT_SLOT(slotUndock())); + TQ_SLOT(slotUndock())); } void KnowitTray::contextMenuAboutToShow (TDEPopupMenu* menu) { menu->removeItemAt(menu->count()-1); - menu->insertItem(i18n("&Quit"), parent(), TQT_SLOT(slotFileQuit())); + menu->insertItem(i18n("&Quit"), parent(), TQ_SLOT(slotFileQuit())); } |
