summaryrefslogtreecommitdiff
path: root/include/toolkit
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-04-04 16:35:25 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-04-05 06:49:56 +0000
commite3eadc96cc05135880b72c42358eb3fe51ea94c4 (patch)
tree6478330637b3d6b12882fcb4ca60790b5800a87c /include/toolkit
parentff339c89b51ed571d55c762e43aa1a6ee9ada1cb (diff)
teach constantparam plugin to find always on and always off bitmask values
Change-Id: If56a483494bd3d7feb3fa67c01000dddd0d34421 Reviewed-on: https://gerrit.libreoffice.org/36085 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/toolkit')
-rw-r--r--include/toolkit/awt/vclxgraphics.hxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/include/toolkit/awt/vclxgraphics.hxx b/include/toolkit/awt/vclxgraphics.hxx
index 21a8609c00bf..059e774042fb 100644
--- a/include/toolkit/awt/vclxgraphics.hxx
+++ b/include/toolkit/awt/vclxgraphics.hxx
@@ -40,14 +40,13 @@ namespace vcl { class Region; }
enum class InitOutDevFlags
{
+ NONE = 0x0000,
FONT = 0x0001,
COLORS = 0x0002,
- RASTEROP = 0x0004,
- CLIPREGION = 0x0008,
};
namespace o3tl
{
- template<> struct typed_flags<InitOutDevFlags> : is_typed_flags<InitOutDevFlags, 0x0f> {};
+ template<> struct typed_flags<InitOutDevFlags> : is_typed_flags<InitOutDevFlags, 0x03> {};
}
@@ -70,7 +69,7 @@ private:
Color maLineColor;
Color maFillColor;
RasterOp meRasterOp;
- vcl::Region* mpClipRegion;
+ vcl::Region* mpClipRegion;
void initAttrs();