diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-11-22 13:20:24 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-11-22 13:20:24 +0000 |
commit | aa8b7fdd6165cc54eab485d3f24c894a3bdb0f06 (patch) | |
tree | 0f05dd71bf133cc81cbf4962c69346cc24852af4 /rsc | |
parent | ec765081b7eceb28fff8b545e7433b14a995c2eb (diff) |
tweak this to make it easy to compiler with c++0x
Diffstat (limited to 'rsc')
-rw-r--r-- | rsc/source/rsc/rsc.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rsc/source/rsc/rsc.cxx b/rsc/source/rsc/rsc.cxx index b0bc9e0ef59d..72a980462cb8 100644 --- a/rsc/source/rsc/rsc.cxx +++ b/rsc/source/rsc/rsc.cxx @@ -1320,7 +1320,7 @@ void RscCompiler::PreprocessSrsFile( const RscCmdLine::OutputFile& rOutputFile, aBaseFileName += ByteString::CreateFromInt32( 0 ); if( GetImageFilePath( rOutputFile, rContext, aBaseFileName += aLine , aFilePath, pSysListFile ) ) - aEntryVector.push_back( ::std::make_pair< ByteString, sal_Int32 >( aFilePath, nNumber ) ); + aEntryVector.push_back( ::std::pair< ByteString, sal_Int32 >( aFilePath, nNumber ) ); else aMissingImages.push_back( aBaseFileName ); } |