summaryrefslogtreecommitdiffstats
path: root/src/tests/latin1test.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-15 15:34:15 -0600
committerTimothy Pearson <[email protected]>2011-12-15 15:34:15 -0600
commit031454e56009d576589c28757f6c6fcf4884095e (patch)
treead4c9959d05a814c9090e8fe63ba27057903271b /src/tests/latin1test.cpp
parent54011e0e1af8cd96162160ecf5d361a59a2c733e (diff)
downloadtellico-031454e56009d576589c28757f6c6fcf4884095e.tar.gz
tellico-031454e56009d576589c28757f6c6fcf4884095e.zip
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'src/tests/latin1test.cpp')
-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;