diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-01 18:12:44 +0900 |
|---|---|---|
| committer | Slávek Banko <slavek.banko@axis.cz> | 2024-01-01 20:18:01 +0100 |
| commit | 143ef5f55063d2879ed484a962d6e0c4373a5bc6 (patch) | |
| tree | 134fece2d9cf2c2f161959afbaea97d9a82884a9 /src/debugoutputtextedit.cpp | |
| parent | c76d015dcd48a879abc33c7955f229c26b496756 (diff) | |
| download | kvpnc-143ef5f55063d2879ed484a962d6e0c4373a5bc6.tar.gz kvpnc-143ef5f55063d2879ed484a962d6e0c4373a5bc6.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 98f86ddadeb4f41b12e5735175951a7c5fec800b)
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; |
