diff options
author | Jan Holesovsky <kendy@collabora.com> | 2016-02-03 11:59:04 +0100 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2016-02-03 12:24:25 +0100 |
commit | 70a1dbb4c7fdcb6ba309aa53dac8299a3f2bc626 (patch) | |
tree | ee32c62ed0553a794ce4d0c24095a8cad24ed232 /sc/source/ui/unoobj/docuno.cxx | |
parent | d8a113841160c571a3f254e73b676994eb940a79 (diff) |
lok: Avoid the 'alien format' warning in LibreOfficeKit.
We immediately cancel all the dialogs that potentially come up when using
LibreOfficeKit; which means that when you tried to save a .docx to a remote
server (which triggered the 'alien format' warning), the save operation
couldn't be completed.
Change-Id: I6bb5eadac994c1f515d7a49299c21960b3491bbe
Diffstat (limited to 'sc/source/ui/unoobj/docuno.cxx')
-rw-r--r-- | sc/source/ui/unoobj/docuno.cxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sc/source/ui/unoobj/docuno.cxx b/sc/source/ui/unoobj/docuno.cxx index 4993f185d117..8806a88579c5 100644 --- a/sc/source/ui/unoobj/docuno.cxx +++ b/sc/source/ui/unoobj/docuno.cxx @@ -44,6 +44,7 @@ #include <tools/multisel.hxx> #include <tools/resary.hxx> #include <toolkit/awt/vclxdevice.hxx> +#include <unotools/saveopt.hxx> #include <ctype.h> #include <float.h> @@ -931,6 +932,12 @@ void ScModelObj::initializeForTiledRendering(const css::uno::Sequence<css::beans SC_MOD()->SetInputOptions(aInputOptions); pDocShell->CalcOutputFactor(); + // when the "This document may contain formatting or content that cannot + // be saved..." dialog appears, it is auto-cancelled with tiled rendering, + // causing 'Save' being disabled; so let's always save to the original + // format + SvtSaveOptions().SetWarnAlienFormat(false); + // default tile size in pixels mnTilePixelWidth = 256; mnTilePixelHeight = 256; |