summaryrefslogtreecommitdiff
path: root/notification-ex/input_selector_item.cc
diff options
context:
space:
mode:
Diffstat (limited to 'notification-ex/input_selector_item.cc')
-rw-r--r--notification-ex/input_selector_item.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/notification-ex/input_selector_item.cc b/notification-ex/input_selector_item.cc
index 37867e2..f8ea926 100644
--- a/notification-ex/input_selector_item.cc
+++ b/notification-ex/input_selector_item.cc
@@ -36,18 +36,18 @@ namespace notification {
namespace item {
InputSelectorItem::InputSelectorItem(std::shared_ptr<AbstractAction> action)
- : AbstractItem(action), impl_(new Impl(this)) {
+ : AbstractItem(action), impl_(new Impl(this)) {
}
InputSelectorItem::InputSelectorItem(string id, std::shared_ptr<AbstractAction> action)
- : AbstractItem(id, action), impl_(new Impl(this)) {
+ : AbstractItem(id, action), impl_(new Impl(this)) {
}
InputSelectorItem::~InputSelectorItem() = default;
InputSelectorItem::Impl::~Impl() = default;
InputSelectorItem::Impl::Impl(InputSelectorItem* parent)
- : parent_(parent) {
+ : parent_(parent) {
LOGI("InputSelectorItem impl created");
}