diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 16:20:48 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 16:20:48 -0600 |
commit | e63beeb5bdb82987b1e00bc35178667786fbad48 (patch) | |
tree | ab77b6ac830b7944d5d1eb9ce8f81feb8fdab948 /dcopjava/tests/test_impl.cpp | |
parent | 67557a2b56c0678c22ab1b00c4fd0224c5e9ed99 (diff) | |
download | tdebindings-e63beeb5bdb82987b1e00bc35178667786fbad48.tar.gz tdebindings-e63beeb5bdb82987b1e00bc35178667786fbad48.zip |
Fix incorrect conversion
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 fecfa009..2b031bcc 100644 --- a/dcopjava/tests/test_impl.cpp +++ b/dcopjava/tests/test_impl.cpp @@ -74,27 +74,27 @@ double test_impl::doubleArg(double in) } -TTQString test_impl::stringArg(TTQString in) +TQString test_impl::stringArg(TQString in) { - cout << "SERVER: TTQString in: " << in << endl; + cout << "SERVER: TQString in: " << in << endl; return "Hello Java"; } -TTQCString test_impl::cstringArg(TTQCString in) +TQCString test_impl::cstringArg(TQCString in) { - cout << "SERVER: TTQCString in: " << in << endl; + cout << "SERVER: TQCString in: " << in << endl; return "Hello Java"; } -TTQStringList test_impl::stringListArg(TTQStringList in) +TQStringList test_impl::stringListArg(TQStringList in) { - cout << "SERVER: TTQStringList in: "; + cout << "SERVER: TQStringList in: "; for (uint i=0; i<in.count(); ++i) cout << in[i] << ", "; cout << endl; - TTQStringList result; + TQStringList result; result << "one" << "two" << "three"; return result; } |