summaryrefslogtreecommitdiffstats
path: root/kompare/tests/cvsdiff/normal.diff
blob: 81859d0c982db04015c0ff2605f3bd21c2daacc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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 );