From a6c26ef0c77c716d222bacb4f402af4638ba62c2 Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Fri, 26 Feb 2016 11:38:52 +0900 Subject: cui: Fix a wrong label "Rotation" in Character > Position menu ... by replacing it with "Scaling". To find the label in Calc's Character > Position menu: 1. select text in a cell and open context menu 2. choose "Character..." in the context menu 3. choose "Position" tab (then the label appears as 2nd headline) This looks a regression from 6a0951a9bc564d8e214472bd84aec2971b9e9d64. Change-Id: I183f89e6891eea53f6e345472d7d413f0f801e91 Reviewed-on: https://gerrit.libreoffice.org/22709 Tested-by: Jenkins Reviewed-by: David Tardon Tested-by: David Tardon --- cui/source/tabpages/chardlg.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cui/source/tabpages/chardlg.cxx') diff --git a/cui/source/tabpages/chardlg.cxx b/cui/source/tabpages/chardlg.cxx index 38527176a933..d2e7fabda54e 100644 --- a/cui/source/tabpages/chardlg.cxx +++ b/cui/source/tabpages/chardlg.cxx @@ -2629,7 +2629,7 @@ SvxCharPositionPage::SvxCharPositionPage( vcl::Window* pParent, const SfxItemSet get(m_pFontSizeFT, "relativefontsize"); get(m_pFontSizeMF, "fontsizesb"); get(m_pRotationContainer, "rotationcontainer"); - get(m_pScalingFT, "rotate"); + get(m_pScalingFT, "scale"); get(m_pScalingAndRotationFT, "rotateandscale"); get(m_p0degRB, "0deg"); get(m_p90degRB, "90deg"); -- cgit