diff options
author | Tamás Zolnai <tamas.zolnai@collabora.com> | 2017-03-28 19:24:49 +0200 |
---|---|---|
committer | Tamás Zolnai <tamas.zolnai@collabora.com> | 2017-04-02 08:09:13 +0000 |
commit | 334e6e2f1ad3da319be0849ec426aa64b18cb599 (patch) | |
tree | bde7eaff903cfd6322b11c31f164f31eb96d1c2d /cui/source/tabpages | |
parent | b1e5e3725642e2d75a4ba73f9258863d65382489 (diff) |
Typo: TopToBotton -> TopToBottom
Change-Id: I1b4d3ab9ec1d1383d76a56c9662ffeeb9fe69655
Reviewed-on: https://gerrit.libreoffice.org/36014
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Tamás Zolnai <tamas.zolnai@collabora.com>
Diffstat (limited to 'cui/source/tabpages')
-rw-r--r-- | cui/source/tabpages/chardlg.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/tabpages/chardlg.cxx b/cui/source/tabpages/chardlg.cxx index b8448130ed87..f0ee84891b5b 100644 --- a/cui/source/tabpages/chardlg.cxx +++ b/cui/source/tabpages/chardlg.cxx @@ -2971,7 +2971,7 @@ void SvxCharPositionPage::Reset( const SfxItemSet* rSet ) static_cast<const SvxCharRotateItem&>( rSet->Get( nWhich )); if (rItem.IsBottomToTop()) m_p90degRB->Check(); - else if (rItem.IsTopToBotton()) + else if (rItem.IsTopToBottom()) m_p270degRB->Check(); else { @@ -3128,7 +3128,7 @@ bool SvxCharPositionPage::FillItemSet( SfxItemSet* rSet ) if (m_p90degRB->IsChecked()) aItem.SetBottomToTop(); else if (m_p270degRB->IsChecked()) - aItem.SetTopToBotton(); + aItem.SetTopToBottom(); rSet->Put( aItem ); bModified = true; } |