diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:44:01 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:44:01 +0000 |
commit | 479f5f799523bffbcc83dff581a2299c047c6fff (patch) | |
tree | 186aae707ed02aac6c7cab2fb14e97f72aca5e36 /dcopc/dcopc.c | |
parent | f1dbff6145c98324ff82e34448b7483727e8ace4 (diff) | |
download | tdebindings-479f5f799523bffbcc83dff581a2299c047c6fff.tar.gz tdebindings-479f5f799523bffbcc83dff581a2299c047c6fff.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebindings@1157645 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'dcopc/dcopc.c')
-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 ); |