ListItem.hpp: [Svace] Fix Uninit ctor warning. 39/206439/1 accepted/tizen/unified/20190520.084049 submit/tizen/20190520.013724 submit/tizen/20190520.013842 submit/tizen/20190520.014040
authorWoochanlee <wc0917.lee@samsung.com>
Mon, 20 May 2019 00:32:53 +0000 (09:32 +0900)
committerWoochanlee <wc0917.lee@samsung.com>
Mon, 20 May 2019 00:34:04 +0000 (09:34 +0900)
Change-Id: Id169856b92e36acad8923e382c9e430543c87945
WGID:374079

src/presenter/ListItem.hpp

index 7344c91..dc5d405 100644 (file)
@@ -37,9 +37,9 @@ struct ListItem
        ObservableProperty<bool> widgetState_ = false;
        const std::string iconPath_;
        ObservableProperty<bool> enabled_ = true;
-       double value_;
+       double value_ = 0.0;
        std::pair<double, double> range_;
        double step_ = 1;
 };
 
-#endif
\ No newline at end of file
+#endif