diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-01 18:12:44 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-01 18:12:44 +0900 |
commit | 98f86ddadeb4f41b12e5735175951a7c5fec800b (patch) | |
tree | 134fece2d9cf2c2f161959afbaea97d9a82884a9 /src/debugoutputtextedit.cpp | |
parent | fdfb4aa064360f849c6acaf2b81c69086f5d51f4 (diff) | |
download | kvpnc-98f86ddadeb4f41b12e5735175951a7c5fec800b.tar.gz kvpnc-98f86ddadeb4f41b12e5735175951a7c5fec800b.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/debugoutputtextedit.cpp')
-rw-r--r-- | src/debugoutputtextedit.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/debugoutputtextedit.cpp b/src/debugoutputtextedit.cpp index 2cd881b..ee2f442 100644 --- a/src/debugoutputtextedit.cpp +++ b/src/debugoutputtextedit.cpp @@ -40,10 +40,10 @@ DebugOutputTextEdit::~DebugOutputTextEdit() TQPopupMenu* DebugOutputTextEdit::createPopupMenu(const TQPoint &) { popup = new TQPopupMenu(this); - popup->insertItem(i18n("Cut Content"), this, TQT_SLOT(cut() ) ); - popup->insertItem(i18n("Copy Content"), this, TQT_SLOT(copy() ) ); + popup->insertItem(i18n("Cut Content"), this, TQ_SLOT(cut() ) ); + popup->insertItem(i18n("Copy Content"), this, TQ_SLOT(copy() ) ); popup->insertSeparator(); - popup->insertItem(i18n("Clear Log Window"), this, TQT_SLOT(clear() ) ); + popup->insertItem(i18n("Clear Log Window"), this, TQ_SLOT(clear() ) ); popup->insertSeparator(); return popup; |