diff options
author | Alexander Golubev <fatzer2@gmail.com> | 2016-06-28 06:14:50 +0300 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2017-01-29 02:27:14 +0100 |
commit | 26d76a4c048d99e282356616ca8e1e5ad45a7f53 (patch) | |
tree | ca0d2e03b2153f1b4c8a6d5726c1c56f6d3b69b5 /dcop/tests/testcases | |
parent | 0c64a776ddecfa33a37318e79b8811d9774579ae (diff) | |
download | tdelibs-26d76a4c048d99e282356616ca8e1e5ad45a7f53.tar.gz tdelibs-26d76a4c048d99e282356616ca8e1e5ad45a7f53.zip |
Add dcop tests to cmake
Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
Diffstat (limited to 'dcop/tests/testcases')
-rw-r--r-- | dcop/tests/testcases | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dcop/tests/testcases b/dcop/tests/testcases index 0f16bdbe3..e2357eb1c 100644 --- a/dcop/tests/testcases +++ b/dcop/tests/testcases @@ -21,11 +21,11 @@ # Then you should put c++ style arguments: # QString::fromLatin1("string with spaces"),4,"string_with_spaces" # -# Note that the first argument has type QString and the last type const char* +# Note that the first argument has type TQString and the last type const char* # (adapt accordingly) # // 1. easy case -QString +TQString url () { @@ -57,9 +57,9 @@ getObject // 2.2 overloading on type of args -QString +TQString identity -( QString x) +( TQString x) { return x; } @@ -87,7 +87,7 @@ getObject24 -#virtual QString identity( QCString ); +#virtual TQString identity( QCString ); # #// 4. simple template argument: #virtual |