From 45d101e8caa54905ccd15173e1d3bbf75b21518a Mon Sep 17 00:00:00 2001 From: Gregory A Lundberg Date: Wed, 24 Jan 2018 22:19:36 -0600 Subject: [PATCH] variable not assigned in operator= cppcheck (via Codacy) points out that one member vairable was not assigned. --- src/gui/auxiliary/old_markup.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/auxiliary/old_markup.hpp b/src/gui/auxiliary/old_markup.hpp index bfd4f3c96a5..9cf6e27ddf1 100644 --- a/src/gui/auxiliary/old_markup.hpp +++ b/src/gui/auxiliary/old_markup.hpp @@ -67,6 +67,7 @@ public: icon_ = rhs.icon_; label_ = rhs.label_; desc_ = rhs.desc_; + default_ = rhs.default_; } return *this; }