[Libreoffice-commits] core.git: svx/source
Andrea Gelmini
andrea.gelmini at gelma.net
Thu May 7 06:55:52 PDT 2015
svx/source/sidebar/line/LinePropertyPanel.cxx | 10 +++++-----
svx/source/sidebar/line/LinePropertyPanel.hxx | 2 +-
2 files changed, 6 insertions(+), 6 deletions(-)
New commits:
commit 70d01ce94794378c7441119f76bd6020e62083a2
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
Date: Thu May 7 14:16:08 2015 +0200
tdf#91051: fix typo Trancparency->Transparency
Change-Id: I8874e38a4bed6adb409a954c15ce7c9e4348c572
Reviewed-on: https://gerrit.libreoffice.org/15665
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
Tested-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/svx/source/sidebar/line/LinePropertyPanel.cxx b/svx/source/sidebar/line/LinePropertyPanel.cxx
index 1897d3f..90224e5 100644
--- a/svx/source/sidebar/line/LinePropertyPanel.cxx
+++ b/svx/source/sidebar/line/LinePropertyPanel.cxx
@@ -179,7 +179,7 @@ LinePropertyPanel::LinePropertyPanel(
get(mpTBWidth, "width");
get(mpFTStyle, "stylelabel");
get(mpLBStyle, "linestyle");
- get(mpFTTrancparency, "translabel");
+ get(mpFTTransparency, "translabel");
get(mpMFTransparent, "linetransparency");
get(mpFTArrow, "arrowlabel");
get(mpLBStart, "beginarrowstyle");
@@ -203,7 +203,7 @@ void LinePropertyPanel::dispose()
mpTBWidth.clear();
mpFTStyle.clear();
mpLBStyle.clear();
- mpFTTrancparency.clear();
+ mpFTTransparency.clear();
mpMFTransparent.clear();
mpFTArrow.clear();
mpLBStart.clear();
@@ -273,7 +273,7 @@ void LinePropertyPanel::Initialize()
mpTBWidth->SetAccessibleRelationLabeledBy(mpFTWidth);
mpLBStyle->SetAccessibleRelationLabeledBy(mpFTStyle);
- mpMFTransparent->SetAccessibleRelationLabeledBy(mpFTTrancparency);
+ mpMFTransparent->SetAccessibleRelationLabeledBy(mpFTTransparency);
mpLBStart->SetAccessibleRelationLabeledBy(mpFTArrow);
mpLBEnd->SetAccessibleRelationLabeledBy(mpLBEnd);
@@ -382,12 +382,12 @@ void LinePropertyPanel::NotifyItemUpdate(
{
if(bDisabled)
{
- mpFTTrancparency->Disable();
+ mpFTTransparency->Disable();
mpMFTransparent->Disable();
}
else
{
- mpFTTrancparency->Enable();
+ mpFTTransparency->Enable();
mpMFTransparent->Enable();
}
diff --git a/svx/source/sidebar/line/LinePropertyPanel.hxx b/svx/source/sidebar/line/LinePropertyPanel.hxx
index 8738de4..a62dc3d 100644
--- a/svx/source/sidebar/line/LinePropertyPanel.hxx
+++ b/svx/source/sidebar/line/LinePropertyPanel.hxx
@@ -97,7 +97,7 @@ private:
VclPtr<ToolBox> mpTBWidth;
VclPtr<FixedText> mpFTStyle;
VclPtr<ListBox> mpLBStyle;
- VclPtr<FixedText> mpFTTrancparency;
+ VclPtr<FixedText> mpFTTransparency;
VclPtr<MetricField> mpMFTransparent;
VclPtr<FixedText> mpFTArrow;
VclPtr<ListBox> mpLBStart;
More information about the Libreoffice-commits
mailing list