summaryrefslogtreecommitdiffstats
path: root/kode/kxml_compiler/creator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kode/kxml_compiler/creator.cpp')
-rw-r--r--kode/kxml_compiler/creator.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kode/kxml_compiler/creator.cpp b/kode/kxml_compiler/creator.cpp
index 25e91edc..66dccccb 100644
--- a/kode/kxml_compiler/creator.cpp
+++ b/kode/kxml_compiler/creator.cpp
@@ -95,7 +95,7 @@ void Creator::createProperty( KODE::Class &c, const TQString &type,
void Creator::createElementFunctions( KODE::Class &c, Element *e )
{
if ( e->hasText ) {
- createProperty( c, "TQString", e->name );
+ createProperty( c, TQSTRING_OBJECT_NAME_STRING, e->name );
if ( mXmlParserType == XmlParserCustomExternal ) {
createTextElementParserCustom( c, e );
}
@@ -137,7 +137,7 @@ void Creator::createClass( Element *element )
{
TQString className = upperFirst( element->name );
- if ( mProcessedClasses.find( className ) != mProcessedClasses.end() ) {
+ if ( mProcessedClasses.tqfind( className ) != mProcessedClasses.end() ) {
return;
}
@@ -150,7 +150,7 @@ void Creator::createClass( Element *element )
itA != element->attributes.end(); ++itA ) {
Attribute *a = *itA;
- createProperty( c, "TQString", a->name );
+ createProperty( c, TQSTRING_OBJECT_NAME_STRING, a->name );
}
TQValueList<Element *>::ConstIterator itE;
@@ -176,7 +176,7 @@ void Creator::createClass( Element *element )
void Creator::createElementWriter( KODE::Class &c, Element *element )
{
- KODE::Function writer( "writeElement", "TQString" );
+ KODE::Function writer( "writeElement", TQSTRING_OBJECT_NAME_STRING );
KODE::Code code;
@@ -268,7 +268,7 @@ void Creator::createElementParser( KODE::Class &c, Element *e )
void Creator::createTextElementParserCustom( KODE::Class &, Element *e )
{
- KODE::Function parser( "parseElement" + upperFirst( e->name ), "TQString" );
+ KODE::Function parser( "parseElement" + upperFirst( e->name ), TQSTRING_OBJECT_NAME_STRING );
KODE::Code code;
@@ -637,7 +637,7 @@ void Creator::createListTypedefs()
void Creator::createIndenter( KODE::File &file )
{
- KODE::Function indenter( "indent", "TQString" );
+ KODE::Function indenter( "indent", TQSTRING_OBJECT_NAME_STRING );
indenter.addArgument( "int n = 0" );
KODE::Code code;
@@ -724,7 +724,7 @@ void Creator::createFileParserCustom( Element *element )
mParserClass.addInclude( "kdebug.h" );
mParserClass.addMemberVariable( KODE::MemberVariable( "mBuffer",
- "TQString" ) );
+ TQSTRING_OBJECT_NAME_STRING ) );
mParserClass.addMemberVariable( KODE::MemberVariable( "mRunning",
"unsigned int" ) );