summaryrefslogtreecommitdiffstats
path: root/kdecore/kconfig_compiler/tests/test5.h.ref
diff options
context:
space:
mode:
Diffstat (limited to 'kdecore/kconfig_compiler/tests/test5.h.ref')
-rw-r--r--kdecore/kconfig_compiler/tests/test5.h.ref20
1 files changed, 10 insertions, 10 deletions
diff --git a/kdecore/kconfig_compiler/tests/test5.h.ref b/kdecore/kconfig_compiler/tests/test5.h.ref
index 1a61d3913..efb9b448a 100644
--- a/kdecore/kconfig_compiler/tests/test5.h.ref
+++ b/kdecore/kconfig_compiler/tests/test5.h.ref
@@ -20,9 +20,9 @@ class Test5 : public KConfigSkeleton
Set Block colors.
*/
static
- void setColor( int i, const QColor & v )
+ void setColor( int i, const TQColor & v )
{
- if (!self()->isImmutable( QString::fromLatin1( "Color%1" ).arg( i ) ))
+ if (!self()->isImmutable( TQString::fromLatin1( "Color%1" ).arg( i ) ))
self()->mColor[i] = v;
}
@@ -30,7 +30,7 @@ class Test5 : public KConfigSkeleton
Get Block colors.
*/
static
- QColor color( int i )
+ TQColor color( int i )
{
return self()->mColor[i];
}
@@ -41,7 +41,7 @@ class Test5 : public KConfigSkeleton
static
void setMouseAction( int i, int v )
{
- if (!self()->isImmutable( QString::fromLatin1( "MouseAction%1" ).arg( QString::fromLatin1( EnumButtonToString[i] ) ) ))
+ if (!self()->isImmutable( TQString::fromLatin1( "MouseAction%1" ).arg( TQString::fromLatin1( EnumButtonToString[i] ) ) ))
self()->mMouseAction[i] = v;
}
@@ -58,9 +58,9 @@ class Test5 : public KConfigSkeleton
Set foo bar
*/
static
- void setFooBar( const QString & v )
+ void setFooBar( const TQString & v )
{
- if (!self()->isImmutable( QString::fromLatin1( "FooBar" ) ))
+ if (!self()->isImmutable( TQString::fromLatin1( "FooBar" ) ))
self()->mFooBar = v;
}
@@ -68,7 +68,7 @@ class Test5 : public KConfigSkeleton
Get foo bar
*/
static
- QString fooBar()
+ TQString fooBar()
{
return self()->mFooBar;
}
@@ -91,7 +91,7 @@ class Test5 : public KConfigSkeleton
v = 88;
}
- if (!self()->isImmutable( QString::fromLatin1( "Age" ) ))
+ if (!self()->isImmutable( TQString::fromLatin1( "Age" ) ))
self()->mAge = v;
}
@@ -115,9 +115,9 @@ class Test5 : public KConfigSkeleton
// Foo
- QColor mColor[4];
+ TQColor mColor[4];
int mMouseAction[3];
- QString mFooBar;
+ TQString mFooBar;
int mAge;
private: