summaryrefslogtreecommitdiffstats
path: root/quanta/components/debugger/debuggerbreakpointview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'quanta/components/debugger/debuggerbreakpointview.cpp')
-rw-r--r--quanta/components/debugger/debuggerbreakpointview.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/quanta/components/debugger/debuggerbreakpointview.cpp b/quanta/components/debugger/debuggerbreakpointview.cpp
index 8614bc28..bf4911ad 100644
--- a/quanta/components/debugger/debuggerbreakpointview.cpp
+++ b/quanta/components/debugger/debuggerbreakpointview.cpp
@@ -52,8 +52,8 @@ DebuggerBreakpointViewItem::DebuggerBreakpointViewItem(DebuggerBreakpointView* v
}
-DebuggerBreakpointView::DebuggerBreakpointView(TQWidget *parent, const char *name)
- : KListView(parent, name)
+DebuggerBreakpointView::DebuggerBreakpointView(TQWidget *tqparent, const char *name)
+ : KListView(tqparent, name)
{
// If you change here, change the DebuggerBreakpointViewColumns enums above
addColumn(i18n("Expression"));
@@ -154,7 +154,7 @@ void DebuggerBreakpointView::slotRemoveSelected()
void DebuggerBreakpointView::keyPressEvent(TQKeyEvent *e)
{
- if(e->key() != Qt::Key_Delete)
+ if(e->key() != TQt::Key_Delete)
{
e->ignore();
return;