You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
900 B
30 lines
900 B
Index: client/dcopfind.cpp
|
|
===================================================================
|
|
RCS file: /home/kde/tdelibs/dcop/client/dcopfind.cpp,v
|
|
retrieving revision 1.2
|
|
diff -r1.2 dcopfind.cpp
|
|
39c39
|
|
< bool findObject( const char* app, const char* obj, const char* func, int argc, char** args )
|
|
---
|
|
> bool findObject( const char* app, const char* obj, const char* func, QCStringList args )
|
|
121c121
|
|
< if ( (int) types.count() != argc ) {
|
|
---
|
|
> if ( types.count() != args.count() ) {
|
|
131c131
|
|
< marshall(arg, argc, args, i, *it);
|
|
---
|
|
> marshall(arg, args, i, *it);
|
|
133c133
|
|
< if ( (int) i != argc ) {
|
|
---
|
|
> if ( (uint) i != args.count() ) {
|
|
224c224,228
|
|
< findObject( app, objid, function, argc, args );
|
|
---
|
|
> QCStringList params;
|
|
> for( int i = 0; i < argc; i++ )
|
|
> params.append( args[ i ] );
|
|
>
|
|
> findObject( app, objid, function, params );
|