diff options
author | Yousuf Philips <philipz85@hotmail.com> | 2017-12-06 18:01:03 +0400 |
---|---|---|
committer | Katarina Behrens <Katarina.Behrens@cib.de> | 2017-12-07 09:43:18 +0100 |
commit | c5505f5a22917c339af4e4c840a6a1ae20e2503f (patch) | |
tree | 24a5f4ce1ab8eacbaa060e1146c54188c287905e /sd/source | |
parent | 6a68f46e8e931c3d4b095a9394d6c050ac9c49d2 (diff) |
tdf#89466 Fix minor localization bugs
Change-Id: I1ee93f81dcd83b5a9277ea444ec8e10db7d790df
Reviewed-on: https://gerrit.libreoffice.org/45958
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
Diffstat (limited to 'sd/source')
-rw-r--r-- | sd/source/ui/sidebar/SlideBackground.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/sidebar/SlideBackground.cxx b/sd/source/ui/sidebar/SlideBackground.cxx index 8b2e15dc7671..9c94a208b2cb 100644 --- a/sd/source/ui/sidebar/SlideBackground.cxx +++ b/sd/source/ui/sidebar/SlideBackground.cxx @@ -239,7 +239,7 @@ void SlideBackground::HandleContextChange( if ( IsImpress() ) { - mpMasterLabel->SetText(SdResId(STR_MASTERSLIDE_NAME)); + mpMasterLabel->SetText(SdResId(STR_MASTERSLIDE_LABEL)); mpMarginSelectBox->Hide(); if ( maContext == maImpressMasterContext ) @@ -294,7 +294,7 @@ void SlideBackground::HandleContextChange( } else if ( IsDraw() ) { - mpMasterLabel->SetText(SdResId(STR_MASTERPAGE_NAME)); + mpMasterLabel->SetText(SdResId(STR_MASTERPAGE_LABEL)); } } @@ -558,7 +558,7 @@ IMPL_LINK(SlideBackground, EventMultiplexerListener, } else if ( maContext == maImpressNotesContext ) { - mpMasterLabel->SetText(SdResId(STR_MASTERSLIDE_NAME)); + mpMasterLabel->SetText(SdResId(STR_MASTERSLIDE_LABEL)); ViewShell* pMainViewShell = mrBase.GetMainViewShell().get(); if (pMainViewShell) |