diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-12-19 19:59:39 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-12-19 19:59:39 +0100 |
commit | dadc9780a49c467ab469abe1c9384e2ac653babf (patch) | |
tree | 25f1034e2e7cdef0c36e4138fef5e4ddfe74703e /plugingui/resource.h | |
parent | 52aa0fb9a1745bd7919c42a37ba48f6bf77e2984 (diff) |
Fix missing initialisations.
Diffstat (limited to 'plugingui/resource.h')
-rw-r--r-- | plugingui/resource.h | 8 |
1 files changed, 4 insertions, 4 deletions
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:: |