From 3705d1bdb97524a00a68105f16bcf78a7de5bd61 Mon Sep 17 00:00:00 2001 From: David Capello Date: Thu, 17 Sep 2015 17:31:45 -0300 Subject: [PATCH] Fix initialization order of PaintInk members --- src/app/tools/inks.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/tools/inks.h b/src/app/tools/inks.h index 3570442fc..14cb97a5a 100644 --- a/src/app/tools/inks.h +++ b/src/app/tools/inks.h @@ -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) { }