diff options
Diffstat (limited to 'kode/file.cpp')
-rw-r--r-- | kode/file.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kode/file.cpp b/kode/file.cpp index b71109ec1..ce8d2a3e8 100644 --- a/kode/file.cpp +++ b/kode/file.cpp @@ -78,7 +78,7 @@ void File::addInclude( const TQString &i ) TQString include = i; if( !include.endsWith( ".h" ) ) include.append( ".h" ); - if ( mIncludes.tqfind( include ) == mIncludes.end() ) { + if ( mIncludes.find( include ) == mIncludes.end() ) { mIncludes.append( include ); } } |