summaryrefslogtreecommitdiffstats
path: root/src/tests
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-18 18:15:24 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-18 18:15:24 -0600
commit8d9b90ca794ffabf151719c2edebe9278a2d3f36 (patch)
tree55f446de8694c45be6bf0f1178920c2b92b0c9f5 /src/tests
parent2781e27b871150395a5a82e221684108641002b2 (diff)
downloadtellico-8d9b90ca794ffabf151719c2edebe9278a2d3f36.tar.gz
tellico-8d9b90ca794ffabf151719c2edebe9278a2d3f36.zip
Rename old tq methods that no longer need a unique name
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/latin1test.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/tests/latin1test.cpp b/src/tests/latin1test.cpp
index 3550914..9f1deab 100644
--- a/src/tests/latin1test.cpp
+++ b/src/tests/latin1test.cpp
@@ -12,12 +12,12 @@ int main(int, char**) {
assert(TQString() == Latin1Literal(0));
assert(TQString() != Latin1Literal(""));
- assert(TQString::tqfromLatin1("") == Latin1Literal(""));
- assert(TQString::tqfromLatin1("") != Latin1Literal(0));
- assert(TQString::tqfromLatin1("x") != Latin1Literal(""));
- assert(TQString::tqfromLatin1("a") == Latin1Literal("a"));
- assert(TQString::tqfromLatin1("a") != Latin1Literal("b"));
- assert(TQString::tqfromLatin1("\xe4") == Latin1Literal("\xe4"));
+ assert(TQString::fromLatin1("") == Latin1Literal(""));
+ assert(TQString::fromLatin1("") != Latin1Literal(0));
+ assert(TQString::fromLatin1("x") != Latin1Literal(""));
+ assert(TQString::fromLatin1("a") == Latin1Literal("a"));
+ assert(TQString::fromLatin1("a") != Latin1Literal("b"));
+ assert(TQString::fromLatin1("\xe4") == Latin1Literal("\xe4"));
assert(TQString::fromUtf8("\xe2\x82\xac") != Latin1Literal("?"));
kdDebug() << "\nLatin1Literal Test OK !" << endl;