[Libreoffice-commits] core.git: sw/source
Szymon Kłos
szymon.klos at collabora.com
Sat Sep 23 14:37:38 UTC 2017
sw/source/uibase/app/docst.cxx | 8 ++++++++
1 file changed, 8 insertions(+)
New commits:
commit 22e94ab1860b1bdea8d107d4e8824f63c6b1c8c5
Author: Szymon Kłos <szymon.klos at collabora.com>
Date: Thu Sep 21 11:31:53 2017 +0200
Watermark: apply when new page style is created
Change-Id: I0d0103f8cc351ec87f7c3bf936ef4725a166d315
Reviewed-on: https://gerrit.libreoffice.org/42581
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Szymon Kłos <szymon.klos at collabora.com>
diff --git a/sw/source/uibase/app/docst.cxx b/sw/source/uibase/app/docst.cxx
index a93bb5ab9ab0..f8c424db280f 100644
--- a/sw/source/uibase/app/docst.cxx
+++ b/sw/source/uibase/app/docst.cxx
@@ -324,6 +324,14 @@ void SwDocShell::ExecStyleSheet( SfxRequest& rReq )
sName = SfxStyleDialog::GenerateUnusedName(*m_xBasePool);
nRet = Edit( sName, sParent, nFamily, nMask, true, OString(), nullptr, rReq.IsAPI() );
+
+ // Update Watermark if new page style was created
+ if( nFamily == SfxStyleFamily::Page )
+ {
+ SwWrtShell* pShell = GetWrtShell();
+ const SfxWatermarkItem aWatermark = pShell->GetWatermark();
+ pShell->SetWatermark( aWatermark );
+ }
}
break;
More information about the Libreoffice-commits
mailing list