summaryrefslogtreecommitdiffstats
path: root/kitchensync/libqopensync/result.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kitchensync/libqopensync/result.cpp')
-rw-r--r--kitchensync/libqopensync/result.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kitchensync/libqopensync/result.cpp b/kitchensync/libqopensync/result.cpp
index b4604041..d38c32a3 100644
--- a/kitchensync/libqopensync/result.cpp
+++ b/kitchensync/libqopensync/result.cpp
@@ -96,8 +96,8 @@ Result::Result( OSyncError **error, bool deleteError )
}
mType = type;
- mName = QString::fromUtf8( osync_error_get_name( error ) );
- mMessage = QString::fromUtf8( osync_error_print( error ) );
+ mName = TQString::fromUtf8( osync_error_get_name( error ) );
+ mMessage = TQString::fromUtf8( osync_error_print( error ) );
if ( deleteError )
osync_error_free( error );
@@ -107,22 +107,22 @@ Result::~Result()
{
}
-void Result::setName( const QString &name )
+void Result::setName( const TQString &name )
{
mName = name;
}
-QString Result::name() const
+TQString Result::name() const
{
return mName;
}
-void Result::setMessage( const QString &message )
+void Result::setMessage( const TQString &message )
{
mMessage = message;
}
-QString Result::message() const
+TQString Result::message() const
{
return mMessage;
}