diff options
author | Noel Grandin <noel@peralex.com> | 2015-04-10 12:17:41 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-04-13 09:34:52 +0200 |
commit | ccfa9fa13db230cc66207bc42d528b773c4cf4f6 (patch) | |
tree | ec43614086a60bab2139f83e3b50260fff5216ce /sc | |
parent | b2bae9b940fc34d2eecd7839e3cba1f41d111e87 (diff) |
convert SFX_LOADED_ to scoped enum
Change-Id: I065a07e1bb5f5a7f85429c919830b6b9605206ea
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/docshell/docsh.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/docshell/docsh.cxx b/sc/source/ui/docshell/docsh.cxx index 2ecbb0c90351..0ab97e119818 100644 --- a/sc/source/ui/docshell/docsh.cxx +++ b/sc/source/ui/docshell/docsh.cxx @@ -595,7 +595,7 @@ bool ScDocShell::Load( SfxMedium& rMedium ) aDocument.InvalidateTableArea(); bIsEmpty = false; - FinishedLoading( SFX_LOADED_MAINDOCUMENT | SFX_LOADED_IMAGES ); + FinishedLoading( SfxLoadedFlags::ALL ); return bRet; } @@ -1503,7 +1503,7 @@ bool ScDocShell::ConvertFrom( SfxMedium& rMedium ) aUpdater.update(); } } - FinishedLoading( SFX_LOADED_MAINDOCUMENT | SFX_LOADED_IMAGES ); + FinishedLoading( SfxLoadedFlags::ALL ); // invalidate eventually temporary table areas if ( bRet ) @@ -1548,7 +1548,7 @@ bool ScDocShell::LoadExternal( SfxMedium& rMed ) return false; } - FinishedLoading(SFX_LOADED_MAINDOCUMENT | SFX_LOADED_IMAGES); + FinishedLoading(SfxLoadedFlags::ALL); return true; } |