summaryrefslogtreecommitdiffstats
path: root/dcopc
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-05 16:23:22 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-05 16:23:22 -0600
commit60933ac14a69fb2b361c06761bb0c877f76130f9 (patch)
tree496d37046c08f2faecdd19478fe7bfe4eb00bf38 /dcopc
parent1c76ebb4b71604470865e073b32a22eec3f8646b (diff)
downloadtdebindings-60933ac14a69fb2b361c06761bb0c877f76130f9.tar.gz
tdebindings-60933ac14a69fb2b361c06761bb0c877f76130f9.zip
Rename TQCStringList
Diffstat (limited to 'dcopc')
-rw-r--r--dcopc/dcopc.c2
-rw-r--r--dcopc/dcopobject.c8
2 files changed, 5 insertions, 5 deletions
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;
}