summaryrefslogtreecommitdiff
path: root/sd/source/ui/docshell
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-04-11 17:14:33 +0100
committerCaolán McNamara <caolanm@redhat.com>2017-04-12 09:57:50 +0200
commit9e4d84daf279a63052cfd0aeebd2d67dfaf07c67 (patch)
tree23d223df34a6636182947a9bf042945e879dbff5 /sd/source/ui/docshell
parent9b157d37f15b34720fced0b94d4541f4149a8947 (diff)
drop document_io_logring.txt and use global logging
Change-Id: Ibda0ce925bc76355e636022c955077ac89e66cce Reviewed-on: https://gerrit.libreoffice.org/36434 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sd/source/ui/docshell')
-rw-r--r--sd/source/ui/docshell/docshel4.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/ui/docshell/docshel4.cxx b/sd/source/ui/docshell/docshel4.cxx
index 0ee9859922cd..d1e464fa38d6 100644
--- a/sd/source/ui/docshell/docshel4.cxx
+++ b/sd/source/ui/docshell/docshel4.cxx
@@ -332,12 +332,12 @@ bool DrawDocShell::Load( SfxMedium& rMedium )
else
{
if( nError == ERRCODE_IO_BROKENPACKAGE )
- SetError( ERRCODE_IO_BROKENPACKAGE, OSL_LOG_PREFIX );
+ SetError(ERRCODE_IO_BROKENPACKAGE);
// TODO/LATER: correct error handling?!
- //pStore->SetError( SVSTREAM_WRONGVERSION, OUString( OSL_LOG_PREFIX ) );
+ //pStore->SetError(SVSTREAM_WRONGVERSION);
else
- SetError( ERRCODE_ABORT, OSL_LOG_PREFIX );
+ SetError(ERRCODE_ABORT);
}
// tell SFX to change viewshell when in preview mode
@@ -592,7 +592,7 @@ bool DrawDocShell::SaveAs( SfxMedium& rMedium )
bRet = SdXMLFilter( rMedium, *this, SDXMLMODE_Normal, SotStorage::GetVersion( rMedium.GetStorage() ) ).Export();
if( GetError() == ERRCODE_NONE )
- SetError( nVBWarning, OSL_LOG_PREFIX );
+ SetError(nVBWarning);
return bRet;
}