diff options
author | Pranav Kant <pranavk@collabora.co.uk> | 2017-08-01 16:37:52 +0530 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2017-08-11 12:28:25 +0200 |
commit | c9ff6f8f9c7f94070bef0909636f0ec91d9baaf7 (patch) | |
tree | bc958806c0423bf4b4d77a6f758e703e0b5b5268 | |
parent | 1d2276429aac4975bde6cc2573cf944253cc4e4b (diff) |
tdf#110743: Use page position to insert master page, not id
Fallback from c454fbb9b62164d5f047990ae63522c9fb932086
Change-Id: I8835f1a23feeb12d77963e621e8d9d59568420f2
(cherry picked from commit f4e5940abbbaa3c2747108b0954e8912d164f3e5)
Reviewed-on: https://gerrit.libreoffice.org/40633
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Jenkins <ci@libreoffice.org>
-rw-r--r-- | sd/source/ui/view/drviews2.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/view/drviews2.cxx b/sd/source/ui/view/drviews2.cxx index d2a5a202890e..2ebcb3230611 100644 --- a/sd/source/ui/view/drviews2.cxx +++ b/sd/source/ui/view/drviews2.cxx @@ -356,7 +356,7 @@ void DrawViewShell::FuTemporary(SfxRequest& rReq) xMasterPagesSupplier->getMasterPages()); if (xMasterPages.is()) { - sal_uInt16 nIndex = GetCurPageId(); + sal_uInt16 nIndex = GetCurPagePos() + 1; xMasterPages->insertNewByIndex (nIndex); // Create shapes for the default layout. |