diff options
author | Noel Grandin <noel@peralex.com> | 2016-08-17 15:34:33 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-08-18 08:49:02 +0200 |
commit | d643cad3f067764ad0d7d7d8f238c590e6e509b5 (patch) | |
tree | d90360a6bc713f918b3e3b7f62bb730b6ae4e397 /cui/source/inc | |
parent | fde3facbc8bdeb820d828183948eceaec66e525a (diff) |
convert ColorModel to scoped enum
and move it into CUI, since it is only used there
Change-Id: I6f8dcfc8d705aa2de2a05eec16f087f17c488872
Diffstat (limited to 'cui/source/inc')
-rw-r--r-- | cui/source/inc/cuitabarea.hxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cui/source/inc/cuitabarea.hxx b/cui/source/inc/cuitabarea.hxx index 23d393711ae2..415055b113ac 100644 --- a/cui/source/inc/cuitabarea.hxx +++ b/cui/source/inc/cuitabarea.hxx @@ -711,6 +711,12 @@ public: /************************************************************************/ +enum class ColorModel +{ + RGB, + CMYK // can be extend with more models, e.g. HSV +}; + struct SvxColorTabPageShadow; class SvxColorTabPage : public SfxTabPage { |