summaryrefslogtreecommitdiffstats
path: root/dcopjava/tests/test_impl.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:44:01 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:44:01 +0000
commit479f5f799523bffbcc83dff581a2299c047c6fff (patch)
tree186aae707ed02aac6c7cab2fb14e97f72aca5e36 /dcopjava/tests/test_impl.cpp
parentf1dbff6145c98324ff82e34448b7483727e8ace4 (diff)
downloadtdebindings-479f5f799523bffbcc83dff581a2299c047c6fff.tar.gz
tdebindings-479f5f799523bffbcc83dff581a2299c047c6fff.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebindings@1157645 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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 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;
}