summaryrefslogtreecommitdiffstats
path: root/src/debugoutputtextedit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/debugoutputtextedit.cpp')
-rw-r--r--src/debugoutputtextedit.cpp6
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;