summaryrefslogtreecommitdiff
path: root/notification-ex/icon_text_item.cc
diff options
context:
space:
mode:
authormk5004.lee <mk5004.lee@samsung.com>2019-03-19 13:24:12 +0900
committermk5004.lee <mk5004.lee@samsung.com>2019-03-19 15:30:34 +0900
commit3c8e4535b84aeeea7d8b06e81f14683f5b3789f5 (patch)
treedc56be2b05f85fdde0a2acf8f68c2818d6e4588b /notification-ex/icon_text_item.cc
parenteb6aab7820a1bef09ce52e64744ba53602ad9ba1 (diff)
downloadnotification-3c8e4535b84aeeea7d8b06e81f14683f5b3789f5.tar.gz
notification-3c8e4535b84aeeea7d8b06e81f14683f5b3789f5.tar.bz2
notification-3c8e4535b84aeeea7d8b06e81f14683f5b3789f5.zip
Check coding style
Change-Id: I69aa2da99230868a3fc3d39c865f963a571cee09 Signed-off-by: mk5004.lee <mk5004.lee@samsung.com>
Diffstat (limited to 'notification-ex/icon_text_item.cc')
-rw-r--r--notification-ex/icon_text_item.cc9
1 files changed, 4 insertions, 5 deletions
diff --git a/notification-ex/icon_text_item.cc b/notification-ex/icon_text_item.cc
index a237ae9..813a230 100644
--- a/notification-ex/icon_text_item.cc
+++ b/notification-ex/icon_text_item.cc
@@ -33,14 +33,13 @@ namespace notification {
namespace item {
IconTextItem::IconTextItem(std::string id, std::shared_ptr<IconItem> icon,
- std::shared_ptr<TextItem> text, std::shared_ptr<AbstractAction> action)
- : AbstractItem(id, action),
- impl_(new Impl(this, icon, text)) {
+ std::shared_ptr<TextItem> text, std::shared_ptr<AbstractAction> action)
+ : AbstractItem(id, action), impl_(new Impl(this, icon, text)) {
}
IconTextItem::Impl::Impl(IconTextItem* parent, std::shared_ptr<IconItem> icon,
- std::shared_ptr<TextItem> text)
- : parent_(parent), icon_(icon), text_(text) {
+ std::shared_ptr<TextItem> text)
+ : parent_(parent), icon_(icon), text_(text) {
LOGI("IconTextItem impl created");
}