diff options
Diffstat (limited to 'dcopc/dcopc.c')
-rw-r--r-- | dcopc/dcopc.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dcopc/dcopc.c b/dcopc/dcopc.c index 5db11c1d..179a7871 100644 --- a/dcopc/dcopc.c +++ b/dcopc/dcopc.c @@ -609,7 +609,7 @@ const gchar *dcop_client_register_as( DcopClient *client, const gchar *app_id, g dcop_marshal_string( data, id ); - if ( dcop_client_call( client, "DCOPServer", "", "registerAs(TQCString)", data, + if ( dcop_client_call( client, "DCOPServer", "", "registerAs(TTQCString)", data, &reply_type, &reply_data ) ) { @@ -813,7 +813,7 @@ gboolean dcop_client_is_application_registered( DcopClient *client, const gchar dcop_marshal_string( data, app ); - if ( dcop_client_call( client, "DCOPServer", "", "isApplicationRegistered(TQCString)", data, &reply_type, &reply_data ) ) + if ( dcop_client_call( client, "DCOPServer", "", "isApplicationRegistered(TTQCString)", data, &reply_type, &reply_data ) ) { dcop_data_reset( reply_data ); dcop_demarshal_boolean( reply_data, &res ); @@ -886,7 +886,7 @@ gboolean dcop_client_receive( DcopClient *client, { GList *list = 0; - *reply_type = strdup( "QCStringList" ); + *reply_type = strdup( "TQCStringList" ); *reply_data = dcop_data_ref( dcop_data_new() ); if ( object_dict ) @@ -1476,7 +1476,7 @@ gboolean dcop_client_connect_dcop_signal( DcopClient *client, dcop_marshal_string( data, normalized_slotname ); dcop_marshal_uint8( data, ivolatile ); - if ( dcop_client_call( client, "DCOPServer", "", "connectSignal(TQCString,TQCString,TQCString,TQCString,TQCString,bool)", data, &reply_type, &reply_data ) == FALSE ) + if ( dcop_client_call( client, "DCOPServer", "", "connectSignal(TTQCString,TTQCString,TTQCString,TTQCString,TTQCString,bool)", data, &reply_type, &reply_data ) == FALSE ) { g_free( normalized_signame ); g_free( normalized_slotname ); @@ -1527,7 +1527,7 @@ gboolean dcop_client_disconnect_dcop_signal( DcopClient *client, dcop_marshal_string( data, receiver_obj ); dcop_marshal_string( data, normalized_slotname ); - if ( dcop_client_call( client, "DCOPServer", "", "disconnectSignal(TQCString,TQCString,TQCString,TQCString,TQCString)", data, &reply_type, &reply_data ) == FALSE ) + if ( dcop_client_call( client, "DCOPServer", "", "disconnectSignal(TTQCString,TTQCString,TTQCString,TTQCString,TTQCString)", data, &reply_type, &reply_data ) == FALSE ) { g_free( normalized_signame ); g_free( normalized_slotname ); |