summaryrefslogtreecommitdiffstats
path: root/dcopjava/tests/test_impl.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-05 15:55:57 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-05 15:55:57 -0600
commit9ba04742771370f59740e32e11c5f3a1e6a1b70a (patch)
treec81c34dae2b3b1ea73801bf18a960265dc4207f7 /dcopjava/tests/test_impl.cpp
parent1a96c45b22d01378202d9dc7ed9c47acd30f966e (diff)
downloadtdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.tar.gz
tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.zip
Initial TQt conversion
Diffstat (limited to 'dcopjava/tests/test_impl.cpp')
-rw-r--r--dcopjava/tests/test_impl.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/dcopjava/tests/test_impl.cpp b/dcopjava/tests/test_impl.cpp
index 2b031bcc..fecfa009 100644
--- a/dcopjava/tests/test_impl.cpp
+++ b/dcopjava/tests/test_impl.cpp
@@ -74,27 +74,27 @@ double test_impl::doubleArg(double in)
}
-TQString test_impl::stringArg(TQString in)
+TTQString test_impl::stringArg(TTQString in)
{
- cout << "SERVER: TQString in: " << in << endl;
+ cout << "SERVER: TTQString in: " << in << endl;
return "Hello Java";
}
-TQCString test_impl::cstringArg(TQCString in)
+TTQCString test_impl::cstringArg(TTQCString in)
{
- cout << "SERVER: TQCString in: " << in << endl;
+ cout << "SERVER: TTQCString in: " << in << endl;
return "Hello Java";
}
-TQStringList test_impl::stringListArg(TQStringList in)
+TTQStringList test_impl::stringListArg(TTQStringList in)
{
- cout << "SERVER: TQStringList in: ";
+ cout << "SERVER: TTQStringList in: ";
for (uint i=0; i<in.count(); ++i)
cout << in[i] << ", ";
cout << endl;
- TQStringList result;
+ TTQStringList result;
result << "one" << "two" << "three";
return result;
}