summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2019-04-01 21:11:47 +0200
committerDavid Tardon <dtardon@redhat.com>2019-04-01 21:11:56 +0200
commit8b5c77bbbce760eaea7aa7dc19b69fceeb32ad67 (patch)
treea2d2659e68b2814d5683303ca5cddc1d65dc969a
parent67b75a024d04e45dd7c179c9c1687d9b8334a9d6 (diff)
WaE: add missing initializations
Change-Id: Idfcaf152a266a11f9694b0bc224fde6dcef42100
-rw-r--r--src/lib/contexts/IWORKTabularModelElement.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/lib/contexts/IWORKTabularModelElement.cpp b/src/lib/contexts/IWORKTabularModelElement.cpp
index 49714b6..a13fab3 100644
--- a/src/lib/contexts/IWORKTabularModelElement.cpp
+++ b/src/lib/contexts/IWORKTabularModelElement.cpp
@@ -915,6 +915,16 @@ namespace
struct CellData
{
+ CellData()
+ : m_content()
+ , m_dateTime()
+ , m_formula()
+ , m_style()
+ , m_type()
+ , m_text()
+ {
+ }
+
boost::optional<std::string> m_content;
boost::optional<IWORKDateTimeData> m_dateTime;
IWORKFormulaPtr_t m_formula;