diff options
Diffstat (limited to 'kode/file.cpp')
-rw-r--r-- | kode/file.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kode/file.cpp b/kode/file.cpp index 51c19131f..b71109ec1 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 ); } } |