vcl/inc/impfont.hxx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-)
New commits: commit 78efa95b8088f7e23a77d7a746186ae2ecd0055c Author: Chris Sherlock <[email protected]> Date: Wed Jan 13 11:25:39 2016 +1100 vcl: format enum in ImplFontMetric to make it easier to rebase Change-Id: Ic2e7213254b60cf3c384dd7ab4696092dbbc5108 Reviewed-on: https://gerrit.libreoffice.org/21412 Tested-by: Jenkins <[email protected]> Reviewed-by: Chris Sherlock <[email protected]> diff --git a/vcl/inc/impfont.hxx b/vcl/inc/impfont.hxx index 400eb19..376c0cb 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: _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
