diff options
Diffstat (limited to 'dcopjava/tests/test_impl.cpp')
-rw-r--r-- | dcopjava/tests/test_impl.cpp | 14 |
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; } |