summaryrefslogtreecommitdiffstats
path: root/kode/style.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kode/style.cpp')
-rw-r--r--kode/style.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kode/style.cpp b/kode/style.cpp
index c7d20f4c..8f4d255b 100644
--- a/kode/style.cpp
+++ b/kode/style.cpp
@@ -23,8 +23,8 @@
#include <kdebug.h>
-#include <qfile.h>
-#include <qtextstream.h>
+#include <tqfile.h>
+#include <tqtextstream.h>
using namespace KODE;
@@ -36,18 +36,18 @@ Style::~Style()
{
}
-QString Style::className( const QString &str )
+TQString Style::className( const TQString &str )
{
return upperFirst( str );
}
-QString Style::upperFirst( const QString &str )
+TQString Style::upperFirst( const TQString &str )
{
if ( str.isEmpty() ) return str;
return str[ 0 ].upper() + str.mid( 1 );
}
-QString Style::lowerFirst( const QString &str )
+TQString Style::lowerFirst( const TQString &str )
{
if ( str.isEmpty() ) return str;
return str[ 0 ].lower() + str.mid( 1 );