summaryrefslogtreecommitdiffstats
path: root/src/helpers
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:34:08 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:34:08 -0600
commitbb7be2361770a435b3e2e8ae2ac4250bf9810bb4 (patch)
tree3dc3697661e497b5486191491da2ed4cc751b7fc /src/helpers
parent40e169496670c40004f7386a23f7c03d9aeac3e0 (diff)
downloadtdesvn-bb7be2361770a435b3e2e8ae2ac4250bf9810bb4.tar.gz
tdesvn-bb7be2361770a435b3e2e8ae2ac4250bf9810bb4.zip
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'src/helpers')
-rw-r--r--src/helpers/stringhelper.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/helpers/stringhelper.h b/src/helpers/stringhelper.h
index 80ad576..c8b628d 100644
--- a/src/helpers/stringhelper.h
+++ b/src/helpers/stringhelper.h
@@ -21,7 +21,7 @@
#define STRINGHELPER_H
#include <tqstring.h>
-#include <tqtextstream.h>
+#include <textstream.h>
namespace helpers
{
@@ -57,7 +57,7 @@ public:
}
v /= 1024.0;
}
- return TQString("%1 %2Byte").tqarg(v,0,'f',pre?2:0).tqarg(pre?TQString(TQChar(pre)):TQString(""));
+ return TQString("%1 %2Byte").arg(v,0,'f',pre?2:0).arg(pre?TQString(TQChar(pre)):TQString(""));
}
};