diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2015-01-11 13:46:20 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2015-01-11 15:32:19 +1100 |
commit | 85819f2374d94b891ba6702ac9dfbdc3b6db9795 (patch) | |
tree | a54b73de0f3820c0fc8134f630442a750dad0fa1 | |
parent | 9298c07733838cb0651a003b1af805044cb01e1d (diff) |
vcl: cosmetic reident and cleanup of RawBitmap class definition
Change-Id: I747199b0cf7079bcebef396865942876f592da8d
-rw-r--r-- | vcl/inc/generic/glyphcache.hxx | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/vcl/inc/generic/glyphcache.hxx b/vcl/inc/generic/glyphcache.hxx index 5930f17fe7b7..6526cfbaf886 100644 --- a/vcl/inc/generic/glyphcache.hxx +++ b/vcl/inc/generic/glyphcache.hxx @@ -337,22 +337,23 @@ protected: class VCL_DLLPUBLIC RawBitmap { public: - RawBitmap(); - ~RawBitmap(); - bool Rotate( int nAngle ); + RawBitmap(); + ~RawBitmap(); + + bool Rotate( int nAngle ); public: basebmp::RawMemorySharedArray mpBits; - sal_uLong mnAllocated; + sal_uLong mnAllocated; - sal_uLong mnWidth; - sal_uLong mnHeight; + sal_uLong mnWidth; + sal_uLong mnHeight; - sal_uLong mnScanlineSize; - sal_uLong mnBitCount; + sal_uLong mnScanlineSize; + sal_uLong mnBitCount; - int mnXOffset; - int mnYOffset; + int mnXOffset; + int mnYOffset; }; #endif // INCLUDED_VCL_INC_GENERIC_GLYPHCACHE_HXX |