diff options
Diffstat (limited to 'dcopc')
-rw-r--r-- | dcopc/dcopc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dcopc/dcopc.c b/dcopc/dcopc.c index fcb51e2b..119371bf 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(QCString)", data, + if ( dcop_client_call( client, "DCOPServer", "", "registerAs(TQCString)", 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(QCString)", data, &reply_type, &reply_data ) ) + if ( dcop_client_call( client, "DCOPServer", "", "isApplicationRegistered(TQCString)", data, &reply_type, &reply_data ) ) { dcop_data_reset( reply_data ); dcop_demarshal_boolean( reply_data, &res ); @@ -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(QCString,QCString,QCString,QCString,QCString,bool)", data, &reply_type, &reply_data ) == FALSE ) + if ( dcop_client_call( client, "DCOPServer", "", "connectSignal(TQCString,TQCString,TQCString,TQCString,TQCString,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(QCString,QCString,QCString,QCString,QCString)", data, &reply_type, &reply_data ) == FALSE ) + if ( dcop_client_call( client, "DCOPServer", "", "disconnectSignal(TQCString,TQCString,TQCString,TQCString,TQCString)", data, &reply_type, &reply_data ) == FALSE ) { g_free( normalized_signame ); g_free( normalized_slotname ); |