diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-01-13 11:25:39 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-01-13 05:54:34 +0000 |
commit | 78efa95b8088f7e23a77d7a746186ae2ecd0055c (patch) | |
tree | d27abdacda3f763f806c2cfea07143bf056dd748 /vcl/inc/impfont.hxx | |
parent | a84cae5735a91e3c1e03dfed58bdf7c03500a53a (diff) |
vcl: format enum in ImplFontMetric to make it easier to rebase
Change-Id: Ic2e7213254b60cf3c384dd7ab4696092dbbc5108
Reviewed-on: https://gerrit.libreoffice.org/21412
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com>
Diffstat (limited to 'vcl/inc/impfont.hxx')
-rw-r--r-- | vcl/inc/impfont.hxx | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/vcl/inc/impfont.hxx b/vcl/inc/impfont.hxx index 400eb196f6ca..376c0cb16ed5 100644 --- a/vcl/inc/impfont.hxx +++ b/vcl/inc/impfont.hxx @@ -108,7 +108,14 @@ private: // TODO: As these are progressively moved from bit fields into boolean variables, comment them out. // Eventually this enum will not be needed and we can remove it. - enum { DEVICE_FLAG=1, /* SCALABLE_FLAG=2, */ LATIN_FLAG=4, CJK_FLAG=8, CTL_FLAG=16, FULLSTOP_CENTERED_FLAG=32 }; + enum { + DEVICE_FLAG=1, + /* SCALABLE_FLAG=2, */ + LATIN_FLAG=4, + CJK_FLAG=8, + CTL_FLAG=16, + FULLSTOP_CENTERED_FLAG=32 + }; public: |