summaryrefslogtreecommitdiffstats
path: root/libktorrent/util/error.h
diff options
context:
space:
mode:
Diffstat (limited to 'libktorrent/util/error.h')
-rw-r--r--libktorrent/util/error.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libktorrent/util/error.h b/libktorrent/util/error.h
index 8b089e4..49aa95d 100644
--- a/libktorrent/util/error.h
+++ b/libktorrent/util/error.h
@@ -20,7 +20,7 @@
#ifndef BTERROR_H
#define BTERROR_H
-#include <qstring.h>
+#include <tqstring.h>
namespace bt
{
@@ -30,12 +30,12 @@ namespace bt
*/
class Error
{
- QString msg;
+ TQString msg;
public:
- Error(const QString & msg);
+ Error(const TQString & msg);
virtual ~Error();
- QString toString() const {return msg;}
+ TQString toString() const {return msg;}
};