diff options
Diffstat (limited to 'src/gui/models')
-rw-r--r-- | src/gui/models/colormodel.h | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/src/gui/models/colormodel.h b/src/gui/models/colormodel.h index f3d6f3617..068da0dd9 100644 --- a/src/gui/models/colormodel.h +++ b/src/gui/models/colormodel.h @@ -23,6 +23,8 @@ #include "utils/stringvector.h" +#include "gui/colorpair.h" + #include "gui/models/listmodel.h" #include "localconsts.h" @@ -30,18 +32,6 @@ class Color; class Widget2; -struct ColorPair -{ - ColorPair(const Color* c1, const Color* c2) : - color1(c1), - color2(c2) - { - } - - const Color* color1; - const Color* color2; -}; - class ColorModel : public ListModel { public: |