summaryrefslogtreecommitdiffstats
path: root/kode/file.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kode/file.cpp')
-rw-r--r--kode/file.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kode/file.cpp b/kode/file.cpp
index 51c19131..b71109ec 100644
--- a/kode/file.cpp
+++ b/kode/file.cpp
@@ -47,7 +47,7 @@ TQString File::filename() const
return className.lower();
}
- return TQString::null;
+ return TQString();
}
void File::setNameSpace( const TQString &n )
@@ -78,7 +78,7 @@ void File::addInclude( const TQString &i )
TQString include = i;
if( !include.endsWith( ".h" ) ) include.append( ".h" );
- if ( mIncludes.find( include ) == mIncludes.end() ) {
+ if ( mIncludes.tqfind( include ) == mIncludes.end() ) {
mIncludes.append( include );
}
}