diff options
Diffstat (limited to 'dcopc/dcopobject.c')
-rw-r--r-- | dcopc/dcopobject.c | 8 |
1 files changed, 4 insertions, 4 deletions
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; } |