summaryrefslogtreecommitdiffstats
path: root/quanta/components/debugger/debuggervariable.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:54:04 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:54:04 +0000
commitdc6b8e72fed2586239e3514819238c520636c9d9 (patch)
tree88b200df0a0b7fab9d6f147596173556f1ed9a13 /quanta/components/debugger/debuggervariable.h
parent6927d4436e54551917f600b706a8d6109e49de1c (diff)
downloadtdewebdev-dc6b8e72fed2586239e3514819238c520636c9d9.tar.gz
tdewebdev-dc6b8e72fed2586239e3514819238c520636c9d9.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdewebdev@1157656 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'quanta/components/debugger/debuggervariable.h')
-rw-r--r--quanta/components/debugger/debuggervariable.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/quanta/components/debugger/debuggervariable.h b/quanta/components/debugger/debuggervariable.h
index 3c83de4b..50d28136 100644
--- a/quanta/components/debugger/debuggervariable.h
+++ b/quanta/components/debugger/debuggervariable.h
@@ -19,8 +19,8 @@
#ifndef DEBUGGERVARIABLE_H
#define DEBUGGERVARIABLE_H
-#include <qstring.h>
-#include <qptrlist.h>
+#include <tqstring.h>
+#include <tqptrlist.h>
#include <klistview.h>
namespace DebuggerVariableTypes
@@ -41,38 +41,38 @@ namespace DebuggerVariableTypes
}
class DebuggerVariable;
-typedef QPtrList<DebuggerVariable> ValueList_t;
+typedef TQPtrList<DebuggerVariable> ValueList_t;
class DebuggerVariable
{
public:
DebuggerVariable();
DebuggerVariable(DebuggerVariable* var, bool copyitem = false);
- DebuggerVariable(const QString& name);
- DebuggerVariable(const QString& name, const QString& value, int type);
- DebuggerVariable(const QString& name, const QString& value, int type, int size);
- DebuggerVariable(const QString& name, const ValueList_t& values, int type);
+ DebuggerVariable(const TQString& name);
+ DebuggerVariable(const TQString& name, const TQString& value, int type);
+ DebuggerVariable(const TQString& name, const TQString& value, int type, int size);
+ DebuggerVariable(const TQString& name, const ValueList_t& values, int type);
virtual ~DebuggerVariable();
- DebuggerVariable* findItem(QListViewItem *item, bool traverse = false);
+ DebuggerVariable* findItem(TQListViewItem *item, bool traverse = false);
- virtual void setName(const QString& name);
- virtual QString name() const;
+ virtual void setName(const TQString& name);
+ virtual TQString name() const;
- virtual void setValue(const QString& value);
- virtual QString value() const;
+ virtual void setValue(const TQString& value);
+ virtual TQString value() const;
virtual void setValues(const ValueList_t& valueList);
virtual ValueList_t values() const;
virtual void setType(int type);
virtual int type() const;
- virtual const QString typeName() const ;
+ virtual const TQString typeName() const ;
virtual bool isScalar() const;
virtual void setSize(long size);
virtual long size() const;
- virtual QString sizeName() const;
+ virtual TQString sizeName() const;
virtual void setReference(bool ref);
virtual bool isReference() const;
@@ -91,8 +91,8 @@ class DebuggerVariable
private:
ValueList_t m_valueList;
- QString m_name;
- QString m_value;
+ TQString m_name;
+ TQString m_value;
bool m_isReference;
long m_size;
int m_type;