summaryrefslogtreecommitdiff
path: root/include/editeng/charrotateitem.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/editeng/charrotateitem.hxx')
-rw-r--r--include/editeng/charrotateitem.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/editeng/charrotateitem.hxx b/include/editeng/charrotateitem.hxx
index 093c84224fe5..49fb3f345bb3 100644
--- a/include/editeng/charrotateitem.hxx
+++ b/include/editeng/charrotateitem.hxx
@@ -52,10 +52,10 @@ public:
void SetValue(Degree10 val) { SfxUInt16Item::SetValue(val.get()); }
// our currently only degree values
- void SetTopToBottom() { SetValue(Degree10(2700)); }
- void SetBottomToTop() { SetValue(Degree10(900)); }
- bool IsTopToBottom() const { return Degree10(2700) == GetValue(); }
- bool IsBottomToTop() const { return Degree10(900) == GetValue(); }
+ void SetTopToBottom() { SetValue(2700_deg10); }
+ void SetBottomToTop() { SetValue(900_deg10); }
+ bool IsTopToBottom() const { return 2700_deg10 == GetValue(); }
+ bool IsBottomToTop() const { return 900_deg10 == GetValue(); }
bool IsVertical() const { return IsTopToBottom() || IsBottomToTop(); }
void dumpAsXml(xmlTextWriterPtr pWriter) const override;