projects
/
platform
/
core
/
appfw
/
united-service.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c6f18c1
)
Fix use_main_thread_ default value
author
Changgyu Choi
<changyu.choi@samsung.com>
Mon, 28 Apr 2025 00:58:07 +0000
(09:58 +0900)
committer
Changgyu Choi
<changyu.choi@samsung.com>
Wed, 14 May 2025 11:36:58 +0000
(20:36 +0900)
use_main_thread_ default value must be false.
Signed-off-by: Changgyu Choi <changyu.choi@samsung.com>
src/service_info.hh
patch
|
blob
|
history
diff --git
a/src/service_info.hh
b/src/service_info.hh
index 0a00fd0f43f7f51b8796fa4720914ef343f9c0bb..cdb424cf9060f4409e75fb2b845f74ce6b0f9604 100644
(file)
--- a/
src/service_info.hh
+++ b/
src/service_info.hh
@@
-51,7
+51,7
@@
class ServiceInfo {
// std::shared_ptr<VconfInfo> GetVconfInfo() const;
private:
- bool use_main_thread_ =
tru
e;
+ bool use_main_thread_ =
fals
e;
std::string conf_name_;
std::string name_;
std::string description_;