summaryrefslogtreecommitdiffstats
path: root/kdbg/exprwnd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdbg/exprwnd.cpp')
-rw-r--r--kdbg/exprwnd.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kdbg/exprwnd.cpp b/kdbg/exprwnd.cpp
index efbbd3c..a180fab 100644
--- a/kdbg/exprwnd.cpp
+++ b/kdbg/exprwnd.cpp
@@ -761,12 +761,12 @@ ValueEdit::ValueEdit(ExprWnd* parent) :
setFrame(false);
hide();
lower(); // lower the window below scrollbars
- connect(parent, SIGNAL(selectionChanged()), SLOT(slotSelectionChanged()));
- connect(parent, SIGNAL(currentChanged(TQListViewItem*)), SLOT(slotSelectionChanged()));
- connect(parent, SIGNAL(expanded(TQListViewItem*)), SLOT(slotSelectionChanged()));
- connect(parent, SIGNAL(collapsed(TQListViewItem*)), SLOT(slotSelectionChanged()));
- connect(this, SIGNAL(done(VarTree*, const TQString&)),
- parent, SIGNAL(editValueCommitted(VarTree*, const TQString&)));
+ connect(parent, TQ_SIGNAL(selectionChanged()), TQ_SLOT(slotSelectionChanged()));
+ connect(parent, TQ_SIGNAL(currentChanged(TQListViewItem*)), TQ_SLOT(slotSelectionChanged()));
+ connect(parent, TQ_SIGNAL(expanded(TQListViewItem*)), TQ_SLOT(slotSelectionChanged()));
+ connect(parent, TQ_SIGNAL(collapsed(TQListViewItem*)), TQ_SLOT(slotSelectionChanged()));
+ connect(this, TQ_SIGNAL(done(VarTree*, const TQString&)),
+ parent, TQ_SIGNAL(editValueCommitted(VarTree*, const TQString&)));
}
ValueEdit::~ValueEdit()