summaryrefslogtreecommitdiffstats
path: root/quanta/components/debugger/variableslistview.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/variableslistview.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/variableslistview.h')
-rw-r--r--quanta/components/debugger/variableslistview.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/quanta/components/debugger/variableslistview.h b/quanta/components/debugger/variableslistview.h
index af3db373..de837241 100644
--- a/quanta/components/debugger/variableslistview.h
+++ b/quanta/components/debugger/variableslistview.h
@@ -25,7 +25,7 @@
class DebuggerVariable;
-class VariablesListView : public KListView
+class VariablesListView : public TDEListView
{
Q_OBJECT
@@ -55,7 +55,7 @@ class VariablesListView : public KListView
void slotVariableSetValue();
void slotVariableDump();
void slotVariableCopyToClipboard();
- void slotVariableContextMenu(KListView *list, TQListViewItem * item, const TQPoint& point);
+ void slotVariableContextMenu(TDEListView *list, TQListViewItem * item, const TQPoint& point);
signals:
void valueChanged(DebuggerVariable*);
@@ -66,7 +66,7 @@ class VariablesListView : public KListView
void replaceVariable(DebuggerVariable* oldvar, DebuggerVariable* newvar);
TQPtrList<DebuggerVariable> m_variablesList;
- KPopupMenu *m_variablePopup;
+ TDEPopupMenu *m_variablePopup;
};
#endif