summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2010-11-22 13:20:24 +0000
committerCaolán McNamara <caolanm@redhat.com>2010-11-22 13:20:24 +0000
commitaa8b7fdd6165cc54eab485d3f24c894a3bdb0f06 (patch)
tree0f05dd71bf133cc81cbf4962c69346cc24852af4
parentec765081b7eceb28fff8b545e7433b14a995c2eb (diff)
tweak this to make it easy to compiler with c++0x
-rw-r--r--rsc/source/rsc/rsc.cxx2
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 );
}