diff options
author | Tor Lillqvist <tml@collabora.com> | 2015-07-27 12:59:03 +0300 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-07-28 07:27:10 +0000 |
commit | c1780b4c9217b3b5374907b7e537f481ed2c680e (patch) | |
tree | 7cae90d8bd8d7e9e27a4a64d46e4981a464eef8e /vcl/inc/quartz | |
parent | 506be190a9c0aa682c8c3a681a567966353afca8 (diff) |
Avoid uncommon C++ style of forward declaration combined with its use
Change-Id: I870821ec64653391caf516cbd3aa890637d7dd24
Reviewed-on: https://gerrit.libreoffice.org/17367
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'vcl/inc/quartz')
-rw-r--r-- | vcl/inc/quartz/salgdi.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vcl/inc/quartz/salgdi.h b/vcl/inc/quartz/salgdi.h index c378f202509e..557d1496499b 100644 --- a/vcl/inc/quartz/salgdi.h +++ b/vcl/inc/quartz/salgdi.h @@ -48,6 +48,7 @@ class AquaSalFrame; class ImplDevFontAttributes; class CoreTextStyle; +class XorEmulation; typedef sal_uInt32 sal_GlyphId; typedef std::vector<unsigned char> ByteVector; @@ -146,7 +147,7 @@ protected: CGLayerRef mxLayer; // Quartz graphics layer CGContextRef mrContext; // Quartz drawing context int mnContextStackDepth; - class XorEmulation* mpXorEmulation; + XorEmulation* mpXorEmulation; int mnXorMode; // 0: off 1: on 2: invert only int mnWidth; int mnHeight; |