From dadc9780a49c467ab469abe1c9384e2ac653babf Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Sat, 19 Dec 2015 19:59:39 +0100 Subject: Fix missing initialisations. --- plugingui/resource.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'plugingui/resource.h') diff --git a/plugingui/resource.h b/plugingui/resource.h index 101c689..2246271 100644 --- a/plugingui/resource.h +++ b/plugingui/resource.h @@ -41,10 +41,10 @@ public: protected: std::string externalData; - bool isValid = false; - bool isInternal = false; - const char *internalData = nullptr; - size_t internalSize = 0; + bool isValid{false}; + bool isInternal{false}; + const char *internalData{nullptr}; + size_t internalSize{0}; }; } // GUI:: -- cgit v1.2.3