summaryrefslogtreecommitdiff
path: root/rsc
diff options
context:
space:
mode:
Diffstat (limited to 'rsc')
-rw-r--r--rsc/source/rsc/rsc.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/rsc/source/rsc/rsc.cxx b/rsc/source/rsc/rsc.cxx
index 402fb6711f21..5abce914bc08 100644
--- a/rsc/source/rsc/rsc.cxx
+++ b/rsc/source/rsc/rsc.cxx
@@ -837,8 +837,8 @@ void RscCompiler::PreprocessSrsFile( const RscCmdLine::OutputFile& rOutputFile,
const OUString& rSrsInPath,
const OUString& rSrsOutPath )
{
- SvFileStream aIStm( rSrsInPath, STREAM_READ );
- SvFileStream aOStm( rSrsOutPath, STREAM_WRITE | STREAM_TRUNC );
+ SvFileStream aIStm( rSrsInPath, StreamMode::READ );
+ SvFileStream aOStm( rSrsOutPath, StreamMode::WRITE | StreamMode::TRUNC );
::std::vector< OString > aMissingImages;
FILE* pSysListFile = rContext.aOutputSysList.isEmpty() ? NULL : fopen( rContext.aOutputSysList.getStr(), "ab" );