diff options
Diffstat (limited to 'kitchensync/libqopensync')
-rw-r--r-- | kitchensync/libqopensync/group.cpp | 2 | ||||
-rw-r--r-- | kitchensync/libqopensync/groupenv.cpp | 2 | ||||
-rw-r--r-- | kitchensync/libqopensync/member.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/kitchensync/libqopensync/group.cpp b/kitchensync/libqopensync/group.cpp index bc94e2208..85f6384de 100644 --- a/kitchensync/libqopensync/group.cpp +++ b/kitchensync/libqopensync/group.cpp @@ -56,7 +56,7 @@ TQStringList GroupConfig::activeObjectTypes() const TQString message; if ( !document.setContent( &file, &message ) ) { - qDebug( "Error on loading %s: %s", fileName.latin1(), message.latin1() ); + tqDebug( "Error on loading %s: %s", fileName.latin1(), message.latin1() ); return TQStringList(); } file.close(); diff --git a/kitchensync/libqopensync/groupenv.cpp b/kitchensync/libqopensync/groupenv.cpp index bd6b3b680..f392fd103 100644 --- a/kitchensync/libqopensync/groupenv.cpp +++ b/kitchensync/libqopensync/groupenv.cpp @@ -105,7 +105,7 @@ Group GroupEnv::addGroup( const TQString &name ) if ( !osync_group_env_add_group( mGroupEnv, ogroup, &error ) ) { Result res( &error ); - qDebug( "Error on adding group: %s", res.message().latin1() ); + tqDebug( "Error on adding group: %s", res.message().latin1() ); } return group; diff --git a/kitchensync/libqopensync/member.cpp b/kitchensync/libqopensync/member.cpp index 35cb04632..b672dd0f6 100644 --- a/kitchensync/libqopensync/member.cpp +++ b/kitchensync/libqopensync/member.cpp @@ -43,7 +43,7 @@ bool Member::isValid() const return false; if ( !osync_member_instance_plugin( mMember, pluginName().utf8(), &error ) ) { - qDebug( "Plugin %s is not valid: %s", pluginName().latin1(), osync_error_print( &error ) ); + tqDebug( "Plugin %s is not valid: %s", pluginName().latin1(), osync_error_print( &error ) ); osync_error_free( &error ); return false; } |