summaryrefslogtreecommitdiffstats
path: root/libktorrent/mse/bigint.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libktorrent/mse/bigint.cpp')
-rw-r--r--libktorrent/mse/bigint.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libktorrent/mse/bigint.cpp b/libktorrent/mse/bigint.cpp
index 90c6d9e..e2746f6 100644
--- a/libktorrent/mse/bigint.cpp
+++ b/libktorrent/mse/bigint.cpp
@@ -36,7 +36,7 @@ namespace mse
mpz_init2(val,num_bits);
}
- BigInt::BigInt(const QString & value)
+ BigInt::BigInt(const TQString & value)
{
mpz_init2(val,(value.length() - 2)*4);
mpz_set_str(val,value.ascii(),0);