summaryrefslogtreecommitdiffstats
path: root/libktorrent/torrent/value.h
diff options
context:
space:
mode:
Diffstat (limited to 'libktorrent/torrent/value.h')
-rw-r--r--libktorrent/torrent/value.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/libktorrent/torrent/value.h b/libktorrent/torrent/value.h
index cd7c879..7926af4 100644
--- a/libktorrent/torrent/value.h
+++ b/libktorrent/torrent/value.h
@@ -20,7 +20,7 @@
#ifndef BTVALUE_H
#define BTVALUE_H
-#include <qstring.h>
+#include <tqstring.h>
#include <util/constants.h>
namespace bt
@@ -41,25 +41,25 @@ namespace bt
Value();
Value(int val);
Value(Int64 val);
- Value(const QByteArray & val);
+ Value(const TQByteArray & val);
Value(const Value & val);
~Value();
Value & operator = (const Value & val);
Value & operator = (Int32 val);
Value & operator = (Int64 val);
- Value & operator = (const QByteArray & val);
+ Value & operator = (const TQByteArray & val);
Type getType() const {return type;}
Int32 toInt() const {return ival;}
Int64 toInt64() const {return big_ival;}
- QString toString() const {return QString(strval);}
- QString toString(const QString & encoding) const;
- QByteArray toByteArray() const {return strval;}
+ TQString toString() const {return TQString(strval);}
+ TQString toString(const TQString & encoding) const;
+ TQByteArray toByteArray() const {return strval;}
private:
Type type;
Int32 ival;
- QByteArray strval;
+ TQByteArray strval;
Int64 big_ival;
};
}