From e69e8b1d09fb579316595b4e6a850e717358a8b1 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sun, 19 Jun 2011 19:03:33 +0000 Subject: TQt4 port kdegraphics This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1237557 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kpovmodeler/pmresourcelocator.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kpovmodeler/pmresourcelocator.cpp') 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] == '/' ) { -- cgit v1.2.1