projects
/
platform
/
core
/
appfw
/
component-based-application.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c79e0aa
)
Initialize int member values
65/252965/2
author
hyunho
<hhstark.kang@samsung.com>
Wed, 3 Feb 2021 09:38:35 +0000
(18:38 +0900)
committer
HwanKyu Jhun
<h.jhun@samsung.com>
Thu, 4 Feb 2021 07:52:34 +0000
(07:52 +0000)
Change-Id: I2d0a0944d954fcb352387d18464bf7b2624446b6
Signed-off-by: hyunho <hhstark.kang@samsung.com>
component_based/widget_base/widget_component.cc
patch
|
blob
|
history
diff --git
a/component_based/widget_base/widget_component.cc
b/component_based/widget_base/widget_component.cc
index 789cbfaec1a6eaf2c27fe682983876f44b2cdab9..f97d88c850992201997d38781718407a030309b6 100644
(file)
--- a/
component_based/widget_base/widget_component.cc
+++ b/
component_based/widget_base/widget_component.cc
@@
-37,7
+37,8
@@
namespace component_based {
WidgetComponent::Impl::Impl(WidgetComponent* parent)
- : parent_(parent) {
+ : parent_(parent), width_(0), height_(0), period_(0), period_timer_(0),
+ pending_update_(false) {
}
WidgetComponent::WidgetComponent(std::string comp_id, std::string inst_id,