summaryrefslogtreecommitdiffstats
path: root/kugar/kudesigner_lib/propertyserializer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kugar/kudesigner_lib/propertyserializer.cpp')
-rw-r--r--kugar/kudesigner_lib/propertyserializer.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/kugar/kudesigner_lib/propertyserializer.cpp b/kugar/kudesigner_lib/propertyserializer.cpp
index dc3e91e6..32ebe470 100644
--- a/kugar/kudesigner_lib/propertyserializer.cpp
+++ b/kugar/kudesigner_lib/propertyserializer.cpp
@@ -20,8 +20,8 @@
***************************************************************************/
#include "propertyserializer.h"
-#include <qcolor.h>
-#include <qfont.h>
+#include <tqcolor.h>
+#include <tqfont.h>
#include <kdebug.h>
@@ -34,13 +34,13 @@ PropertySerializer::PropertySerializer()
PropertySerializer::~PropertySerializer()
{}
-QString PropertySerializer::toString( Property *prop )
+TQString PropertySerializer::toString( Property *prop )
{
- QVariant val = prop->value();
+ TQVariant val = prop->value();
switch ( prop->type() )
{
case KoProperty::Color:
- return QString( "%1,%2,%3" ).arg( val.toColor().red() ).arg( val.toColor().green() ).arg( val.toColor().blue() );
+ return TQString( "%1,%2,%3" ).tqarg( val.toColor().red() ).tqarg( val.toColor().green() ).tqarg( val.toColor().blue() );
case KoProperty::Boolean:
return val.toBool() ? "true" : "false";
case KoProperty::Font:
@@ -50,26 +50,26 @@ QString PropertySerializer::toString( Property *prop )
}
}
-QVariant PropertySerializer::fromString( Property *prop, const QString &str )
+TQVariant PropertySerializer::fromString( Property *prop, const TQString &str )
{
switch ( prop->type() )
{
case KoProperty::Color:
- return QVariant( QColor( str.section( ',', 0, 0 ).toInt(),
+ return TQVariant( TQColor( str.section( ',', 0, 0 ).toInt(),
str.section( ',', 1, 1 ).toInt(),
str.section( ',', 2, 2 ).toInt() ) );
case KoProperty::Integer:
- return QVariant( str.toInt() );
+ return TQVariant( str.toInt() );
case KoProperty::Boolean:
- return QVariant( str == "true", 3 );
+ return TQVariant( str == "true", 3 );
case KoProperty::Font:
- return QVariant( QFont( str ) );
+ return TQVariant( TQFont( str ) );
case KoProperty::LineStyle:
- return QVariant( str.toInt() );
+ return TQVariant( str.toInt() );
case KoProperty::Symbol:
- return QVariant( str.at( 0 ).latin1() );
+ return TQVariant( str.tqat( 0 ).latin1() );
default:
- return QVariant( str );
+ return TQVariant( str );
}
}