diff options
Diffstat (limited to 'dcop')
-rw-r--r-- | dcop/client/marshall.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dcop/client/marshall.cpp b/dcop/client/marshall.cpp index 354ad03e8..efdb76bfc 100644 --- a/dcop/client/marshall.cpp +++ b/dcop/client/marshall.cpp @@ -339,7 +339,7 @@ void marshall( TQDataStream &arg, QCStringList args, uint &i, TQString type ) int tqRectKeywordLength = strlen(TQRECT_OBJECT_NAME_STRING); int tqColorKeywordLength = strlen(TQCOLOR_OBJECT_NAME_STRING); if ( s == "true" || s == "false" ) { - arg << TQVariant( mkBool( s ), 42 ); + arg << TQVariant( mkBool( s ) ); } else if ( s.left( 4 ) == "int(" ) { arg << TQVariant( s.mid(4, s.length()-5).toInt() ); |