summaryrefslogtreecommitdiffstats
path: root/quanta/components/debugger/debuggerbreakpointview.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:16:01 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:16:01 -0600
commit9771f17f8cc5252b12ec5f3edf47ff9bffdf997f (patch)
treeb9e389db87bdba126010d03fb5bccdc748d0e6fa /quanta/components/debugger/debuggerbreakpointview.h
parent9930e16dde86b7de9b792613d826f4f8648b9768 (diff)
downloadtdewebdev-9771f17f8cc5252b12ec5f3edf47ff9bffdf997f.tar.gz
tdewebdev-9771f17f8cc5252b12ec5f3edf47ff9bffdf997f.zip
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'quanta/components/debugger/debuggerbreakpointview.h')
-rw-r--r--quanta/components/debugger/debuggerbreakpointview.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/quanta/components/debugger/debuggerbreakpointview.h b/quanta/components/debugger/debuggerbreakpointview.h
index 9724cec5..e6abcfcd 100644
--- a/quanta/components/debugger/debuggerbreakpointview.h
+++ b/quanta/components/debugger/debuggerbreakpointview.h
@@ -27,7 +27,7 @@
// class DebuggerBreakpoint;
class DebuggerBreakpointView;
-class DebuggerBreakpointViewItem : public KListViewItem
+class DebuggerBreakpointViewItem : public TDEListViewItem
{
private:
DebuggerBreakpoint m_breakpoint;
@@ -41,7 +41,7 @@ class DebuggerBreakpointViewItem : public KListViewItem
};
-class DebuggerBreakpointView : public KListView
+class DebuggerBreakpointView : public TDEListView
{
Q_OBJECT
@@ -59,7 +59,7 @@ class DebuggerBreakpointView : public KListView
public slots:
void slotRemoveSelected();
- void slotBreakpointContextMenu(KListView *list, TQListViewItem * item, const TQPoint& point);
+ void slotBreakpointContextMenu(TDEListView *list, TQListViewItem * item, const TQPoint& point);
void slotBreakpointDoubleClick(TQListViewItem *item, const TQPoint &point, int column);
signals:
@@ -69,7 +69,7 @@ class DebuggerBreakpointView : public KListView
void keyPressEvent(TQKeyEvent *e);
TQListViewItem* findBreakpoint(const DebuggerBreakpoint& bp, bool addIfNotExist = true);
- KPopupMenu *m_breakpointPopup;
+ TDEPopupMenu *m_breakpointPopup;
};
#endif