diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /kode/kxml_compiler/kxml_compiler.cpp | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kode/kxml_compiler/kxml_compiler.cpp')
-rw-r--r-- | kode/kxml_compiler/kxml_compiler.cpp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/kode/kxml_compiler/kxml_compiler.cpp b/kode/kxml_compiler/kxml_compiler.cpp index 62b2162c5..71720d6b9 100644 --- a/kode/kxml_compiler/kxml_compiler.cpp +++ b/kode/kxml_compiler/kxml_compiler.cpp @@ -36,11 +36,11 @@ #include <ksimpleconfig.h> #include <kstandarddirs.h> -#include <qfile.h> -#include <qtextstream.h> -#include <qdom.h> -#include <qregexp.h> -#include <qmap.h> +#include <tqfile.h> +#include <tqtextstream.h> +#include <tqdom.h> +#include <tqregexp.h> +#include <tqmap.h> #include <iostream> @@ -77,25 +77,25 @@ int main( int argc, char **argv ) return 1; } - QString baseDir = QFile::decodeName( args->getOption( "directory" ) ); + TQString baseDir = TQFile::decodeName( args->getOption( "directory" ) ); if ( !baseDir.endsWith( "/" ) ) baseDir.append( "/" ); - QString dtdFilename = args->url( 0 ).path(); + TQString dtdFilename = args->url( 0 ).path(); - QString baseName = args->url( 0 ).fileName(); + TQString baseName = args->url( 0 ).fileName(); int pos = baseName.findRev( '.' ); if ( pos > 0 ) baseName = baseName.left( pos ); - QFile dtdFile( dtdFilename ); + TQFile dtdFile( dtdFilename ); if ( !dtdFile.open( IO_ReadOnly ) ) { kdError() << "Unable to open '" << dtdFilename << "'" << endl; return 1; } - QString errorMsg; + TQString errorMsg; int errorLine, errorCol; - QDomDocument doc; + TQDomDocument doc; if ( !doc.setContent( &dtdFile, false, &errorMsg, &errorLine, &errorCol ) ) { kdError() << errorMsg << " at " << errorLine << "," << errorCol << endl; return 1; @@ -135,7 +135,7 @@ int main( int argc, char **argv ) Creator c( pt ); kdDebug() << "Create classes" << endl; - QValueList<Element *>::ConstIterator it; + TQValueList<Element *>::ConstIterator it; for( it = start->elements.begin(); it != start->elements.end(); ++it ) { c.createClass( *it ); } @@ -149,7 +149,7 @@ int main( int argc, char **argv ) c.createListTypedefs(); #if 0 - QValueList<Reference *>::ConstIterator it2; + TQValueList<Reference *>::ConstIterator it2; for( it2 = start->references.begin(); it2 != start->references.end(); ++it2 ) { Element e; |