diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2021-08-25 18:29:48 +1000 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-09-10 10:06:36 +0200 |
commit | 4d1d485544ea947b71534fd96ba520cd6e1c721b (patch) | |
tree | 0bf88b2b6d6076230d35a74771e95e453eaf27bc /include/vcl/outdev.hxx | |
parent | 9db1e85a8da3952cefef552853753342d7147b98 (diff) |
vcl: move SetLayoutMode() to text.cxx
Ultimately I hope to reduce outdevstate.cxx to only have push(), pop()
and clearstack(), then rename outdevstate.cxx to stack.cxx. Eventually,
the plan is to separate metafile processing from rendering.
Also add a unit test for SetLayoutMode() and GetLayoutMode()
Change-Id: I92cada7bf3d57ca8b84e04308c74428a1a19e775
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121022
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/vcl/outdev.hxx')
-rw-r--r-- | include/vcl/outdev.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/outdev.hxx b/include/vcl/outdev.hxx index 8fa546b20b60..2839e5c98da5 100644 --- a/include/vcl/outdev.hxx +++ b/include/vcl/outdev.hxx @@ -483,7 +483,7 @@ public: DrawModeFlags GetDrawMode() const { return mnDrawMode; } void SetLayoutMode( ComplexTextLayoutFlags nTextLayoutMode ); - ComplexTextLayoutFlags GetLayoutMode() const { return mnTextLayoutMode; } + ComplexTextLayoutFlags GetLayoutMode() const { return mnTextLayoutMode; } void SetDigitLanguage( LanguageType ); LanguageType GetDigitLanguage() const { return meTextLanguage; } |