summaryrefslogtreecommitdiffstats
path: root/libktorrent/torrent/peerid.h
diff options
context:
space:
mode:
Diffstat (limited to 'libktorrent/torrent/peerid.h')
-rw-r--r--libktorrent/torrent/peerid.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libktorrent/torrent/peerid.h b/libktorrent/torrent/peerid.h
index 90ba439..8ebea9a 100644
--- a/libktorrent/torrent/peerid.h
+++ b/libktorrent/torrent/peerid.h
@@ -20,7 +20,7 @@
#ifndef BTPEERID_H
#define BTPEERID_H
-#include <qstring.h>
+#include <tqstring.h>
namespace bt
{
@@ -31,7 +31,7 @@ namespace bt
class PeerID
{
char id[20];
- QString client_name;
+ TQString client_name;
public:
PeerID();
PeerID(const char* pid);
@@ -42,14 +42,14 @@ namespace bt
const char* data() const {return id;}
- QString toString() const;
+ TQString toString() const;
/**
* Interprets the PeerID to figure out which client it is.
* @author Ivan + Joris
* @return The name of the client
*/
- QString identifyClient() const;
+ TQString identifyClient() const;
friend bool operator == (const PeerID & a,const PeerID & b);
friend bool operator != (const PeerID & a,const PeerID & b);