From 9ba04742771370f59740e32e11c5f3a1e6a1b70a Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 5 Dec 2011 15:55:57 -0600 Subject: Initial TQt conversion --- dcopc/dcopc.c | 10 +++++----- dcopc/dcopobject.c | 8 ++++---- dcopc/glib.m4 | 4 ++-- dcopc/gtk.m4 | 4 ++-- 4 files changed, 13 insertions(+), 13 deletions(-) (limited to 'dcopc') 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 ); diff --git a/dcopc/dcopobject.c b/dcopc/dcopobject.c index 6694282b..37c26b18 100644 --- a/dcopc/dcopobject.c +++ b/dcopc/dcopobject.c @@ -192,7 +192,7 @@ gboolean dcop_object_real_process( DcopObject *obj, const gchar *fun, dcop_data if ( strcmp( fun, "interfaces()" ) == 0 ) { - *reply_type = g_strdup( "QCStringList" ); + *reply_type = g_strdup( "TQCStringList" ); *reply_data = dcop_data_ref( dcop_data_new() ); strlist = klass->interfaces( obj ); @@ -203,7 +203,7 @@ gboolean dcop_object_real_process( DcopObject *obj, const gchar *fun, dcop_data } else if ( strcmp( fun, "functions()" ) == 0 ) { - *reply_type = strdup( "QCStringList" ); + *reply_type = strdup( "TQCStringList" ); *reply_data = dcop_data_ref( dcop_data_new() ); strlist = klass->functions( obj ); @@ -235,8 +235,8 @@ GList *dcop_object_interfaces( DcopObject *obj ) GList *dcop_object_real_functions( DcopObject *client ) { GList *res = 0; - res = g_list_append( res, g_strdup( "QCStringList interfaces()" ) ); - res = g_list_append( res, g_strdup( "QCStringList functions()" ) ); + res = g_list_append( res, g_strdup( "TQCStringList interfaces()" ) ); + res = g_list_append( res, g_strdup( "TQCStringList functions()" ) ); return res; } diff --git a/dcopc/glib.m4 b/dcopc/glib.m4 index b8094bbf..51ba728c 100644 --- a/dcopc/glib.m4 +++ b/dcopc/glib.m4 @@ -97,7 +97,7 @@ main () printf ("*** to remove the old version of GLIB. You may also be able to fix the error\n"); printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n"); printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n"); - printf("*** required on your system.\n"); + printf("*** retquired on your system.\n"); printf("*** If glib-config was wrong, set the environment variable GLIB_CONFIG\n"); printf("*** to point to the correct copy of glib-config, and remove the file config.cache\n"); printf("*** before re-running configure\n"); @@ -169,7 +169,7 @@ main () echo "*** version of GLIB. If it is not finding GLIB, you'll need to set your" echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point" echo "*** to the installed location Also, make sure you have run ldconfig if that" - echo "*** is required on your system" + echo "*** is retquired on your system" echo "***" echo "*** If you have an old version installed, it is best to remove it, although" echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH" diff --git a/dcopc/gtk.m4 b/dcopc/gtk.m4 index af4c0855..01401067 100644 --- a/dcopc/gtk.m4 +++ b/dcopc/gtk.m4 @@ -95,7 +95,7 @@ main () printf ("*** to remove the old version of GTK+. You may also be able to fix the error\n"); printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n"); printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n"); - printf("*** required on your system.\n"); + printf("*** retquired on your system.\n"); printf("*** If gtk-config was wrong, set the environment variable GTK_CONFIG\n"); printf("*** to point to the correct copy of gtk-config, and remove the file config.cache\n"); printf("*** before re-running configure\n"); @@ -170,7 +170,7 @@ main () echo "*** version of GTK. If it is not finding GTK, you'll need to set your" echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point" echo "*** to the installed location Also, make sure you have run ldconfig if that" - echo "*** is required on your system" + echo "*** is retquired on your system" echo "***" echo "*** If you have an old version installed, it is best to remove it, although" echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH" -- cgit v1.2.1