diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-05-15 20:18:36 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-05-15 20:18:36 -0500 |
commit | 7e397d203cff0325da049a91ca9363ed9d9ce934 (patch) | |
tree | 68db392e7ef8a3325bc194caaaba52e274a0b6f2 /dcop/client/dcop.cpp | |
parent | 46fd5cba30603e692585d81ad4f1824231fd86b6 (diff) | |
download | tdelibs-7e397d203cff0325da049a91ca9363ed9d9ce934.tar.gz tdelibs-7e397d203cff0325da049a91ca9363ed9d9ce934.zip |
Fix DCOP standard TQt object marshaling
This partially resolves Bug 1510
Diffstat (limited to 'dcop/client/dcop.cpp')
-rw-r--r-- | dcop/client/dcop.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dcop/client/dcop.cpp b/dcop/client/dcop.cpp index 74e6911f2..257b96eb7 100644 --- a/dcop/client/dcop.cpp +++ b/dcop/client/dcop.cpp @@ -289,8 +289,9 @@ int callFunction( const char* app, const char* obj, const char* func, const QCSt TQDataStream arg(data, IO_WriteOnly); uint i = 0; - for( TQStringList::Iterator it = types.begin(); it != types.end(); ++it ) + for( TQStringList::Iterator it = types.begin(); it != types.end(); ++it ) { marshall( arg, args, i, *it ); + } if ( i != args.count() ) { |