diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-02-08 13:37:50 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-02-09 10:09:08 +0000 |
commit | 3e33fbd269e9ad3c2e72fe6f6780a77f4a5b3c78 (patch) | |
tree | 8ca79301ed8eebcef61f924fa396b02c2257955f /vcl/inc | |
parent | 76e0f23171d899ef567b04b555a748b60f99353c (diff) |
restore constant to VerticalOrientation
Removed in commit f4826959c1a5b0e6d2849d4240668b2087582848
"new loplugin:unusedenumconstants".
And add a comment.
Change-Id: I63d6f46aa92e31db08e51e47a62104dc7d3d3359
Reviewed-on: https://gerrit.libreoffice.org/34057
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/inc')
-rw-r--r-- | vcl/inc/CommonSalLayout.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vcl/inc/CommonSalLayout.hxx b/vcl/inc/CommonSalLayout.hxx index 052104850414..c9af54519390 100644 --- a/vcl/inc/CommonSalLayout.hxx +++ b/vcl/inc/CommonSalLayout.hxx @@ -90,8 +90,10 @@ public: bool IsKashidaPosValid(int nCharPos) const final override; }; +// these must match the values in vcl/source/gdi/VerticalOrientationData.cxx enum class VerticalOrientation { Upright = 0, + Rotated = 1, TransformedUpright = 2, TransformedRotated = 3 }; |