From 60933ac14a69fb2b361c06761bb0c877f76130f9 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 5 Dec 2011 16:23:22 -0600 Subject: Rename TQCStringList --- dcopc/dcopc.c | 2 +- dcopc/dcopobject.c | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'dcopc') diff --git a/dcopc/dcopc.c b/dcopc/dcopc.c index 23ba558f..5db11c1d 100644 --- a/dcopc/dcopc.c +++ b/dcopc/dcopc.c @@ -886,7 +886,7 @@ gboolean dcop_client_receive( DcopClient *client, { GList *list = 0; - *reply_type = strdup( "TQCStringList" ); + *reply_type = strdup( "QCStringList" ); *reply_data = dcop_data_ref( dcop_data_new() ); if ( object_dict ) diff --git a/dcopc/dcopobject.c b/dcopc/dcopobject.c index 37c26b18..6694282b 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( "TQCStringList" ); + *reply_type = g_strdup( "QCStringList" ); *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( "TQCStringList" ); + *reply_type = strdup( "QCStringList" ); *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( "TQCStringList interfaces()" ) ); - res = g_list_append( res, g_strdup( "TQCStringList functions()" ) ); + res = g_list_append( res, g_strdup( "QCStringList interfaces()" ) ); + res = g_list_append( res, g_strdup( "QCStringList functions()" ) ); return res; } -- cgit v1.2.1