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 /include | |
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 'include')
-rw-r--r-- | include/editeng/charrotateitem.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/editeng/charrotateitem.hxx b/include/editeng/charrotateitem.hxx index 95e86c3a01aa..fd08402b0e41 100644 --- a/include/editeng/charrotateitem.hxx +++ b/include/editeng/charrotateitem.hxx @@ -67,9 +67,9 @@ public: virtual bool operator==( const SfxPoolItem& ) const override; // our currently only degree values - void SetTopToBotton() { SetValue( 2700 ); } + void SetTopToBottom() { SetValue( 2700 ); } void SetBottomToTop() { SetValue( 900 ); } - bool IsTopToBotton() const { return 2700 == GetValue(); } + bool IsTopToBottom() const { return 2700 == GetValue(); } bool IsBottomToTop() const { return 900 == GetValue(); } bool IsFitToLine() const { return bFitToLine; } |