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 c220b3f8..2b031bcc 100644 --- a/dcopjava/tests/test_impl.cpp +++ b/dcopjava/tests/test_impl.cpp @@ -74,27 +74,27 @@ double test_impl::doubleArg(double in) } -QString test_impl::stringArg(QString in) +TQString test_impl::stringArg(TQString in) { - cout << "SERVER: QString in: " << in << endl; + cout << "SERVER: TQString in: " << in << endl; return "Hello Java"; } -QCString test_impl::cstringArg(QCString in) +TQCString test_impl::cstringArg(TQCString in) { - cout << "SERVER: QCString in: " << in << endl; + cout << "SERVER: TQCString in: " << in << endl; return "Hello Java"; } -QStringList test_impl::stringListArg(QStringList in) +TQStringList test_impl::stringListArg(TQStringList in) { - cout << "SERVER: QStringList in: "; + cout << "SERVER: TQStringList in: "; for (uint i=0; i<in.count(); ++i) cout << in[i] << ", "; cout << endl; - QStringList result; + TQStringList result; result << "one" << "two" << "three"; return result; } |