diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-11-21 13:48:54 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-11-22 07:34:34 +0100 |
commit | fe39cd0df3e1c9e1e4ea71b3759371cbcca944dd (patch) | |
tree | b6551d75bfa2212bfb705a9e75aca30642af92e2 /vcl/inc/unx | |
parent | bab2753312c960c9eea610e927492775308fdfd5 (diff) |
convert SalRGB to scoped enum
and remove unused values
Change-Id: Id10c18e832d54a6e530c3fe197b230d2d511d79c
Reviewed-on: https://gerrit.libreoffice.org/63739
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/inc/unx')
-rw-r--r-- | vcl/inc/unx/saldisp.hxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/vcl/inc/unx/saldisp.hxx b/vcl/inc/unx/saldisp.hxx index 44fb08b87a91..c5bc241a37cc 100644 --- a/vcl/inc/unx/saldisp.hxx +++ b/vcl/inc/unx/saldisp.hxx @@ -71,12 +71,9 @@ extern "C" srv_vendor_t sal_GetServerVendor( Display *p_display ); // MSB/Bigendian view (Color == RGB, r=0xFF0000, g=0xFF00, b=0xFF) -enum SalRGB { RGB, RBG, +enum class SalRGB { RGB, RBG, GBR, GRB, BGR, BRG, - RGBA, RBGA, - GBRA, GRBA, - BGRA, BRGA, otherSalRGB }; class SalVisual : public XVisualInfo |