diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2015-05-07 14:16:08 +0200 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-05-07 13:55:26 +0000 |
commit | 70d01ce94794378c7441119f76bd6020e62083a2 (patch) | |
tree | 54e606dd7dc8791c1abfee489de8aa55b66a3ee8 /svx | |
parent | 755abae091c59511b08c8e6df9a5e4e7613570a7 (diff) |
tdf#91051: fix typo Trancparency->Transparency
Change-Id: I8874e38a4bed6adb409a954c15ce7c9e4348c572
Reviewed-on: https://gerrit.libreoffice.org/15665
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/sidebar/line/LinePropertyPanel.cxx | 10 | ||||
-rw-r--r-- | svx/source/sidebar/line/LinePropertyPanel.hxx | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/svx/source/sidebar/line/LinePropertyPanel.cxx b/svx/source/sidebar/line/LinePropertyPanel.cxx index 1897d3fca23a..90224e57f86d 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 8738de42c134..a62dc3d2ee6f 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; |