diff options
Diffstat (limited to 'kpovmodeler/pmresourcelocator.cpp')
-rw-r--r-- | kpovmodeler/pmresourcelocator.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kpovmodeler/pmresourcelocator.cpp b/kpovmodeler/pmresourcelocator.cpp index 715abc45..46ab9502 100644 --- a/kpovmodeler/pmresourcelocator.cpp +++ b/kpovmodeler/pmresourcelocator.cpp @@ -52,16 +52,16 @@ void PMResourceLocator::clearCache( ) TQString PMResourceLocator::lookUp( const TQString& file ) { if( file.isEmpty( ) ) - return TQString::null; + return TQString(); kdDebug( PMArea ) << "LookUp: " << file << endl; - TQString* ps = m_cache.find( file ); + TQString* ps = m_cache.tqfind( file ); if( ps ) return *ps; bool found = false; - TQString fullPath = TQString::null; + TQString fullPath = TQString(); if( file[0] == '/' ) { |