Fix initialization order of PaintInk members

This commit is contained in:
David Capello 2015-09-17 17:31:45 -03:00
parent 9e561148fc
commit 3705d1bdb9

View File

@ -26,8 +26,8 @@ public:
enum Type { Merge, WithFg, WithBg, Copy, LockAlpha };
private:
AlgoHLine m_proc;
Type m_type;
AlgoHLine m_proc;
public:
PaintInk(Type type) : m_type(type), m_proc(nullptr) { }