From 577c06cd6c63c3a3abf898bff57cc4eaced54645 Mon Sep 17 00:00:00 2001 From: Evgen Servetnik Date: Wed, 18 Oct 2017 15:25:30 +0300 Subject: [PATCH] TizenRefApp-9635 Fix code style Change-Id: I2b454bc3c25a07b01ca1c4b5779e1286bd2ecd8e Signed-off-by: Evgen Servetnik --- src/App/inc/DelButton.h | 1 - src/App/inc/MainController.h | 1 - src/App/inc/MainLayout.h | 1 - src/App/inc/TaskListView.h | 1 - src/App/src/TaskListViewItem.cpp | 1 - 5 files changed, 5 deletions(-) diff --git a/src/App/inc/DelButton.h b/src/App/inc/DelButton.h index e4802d4..fd524da 100644 --- a/src/App/inc/DelButton.h +++ b/src/App/inc/DelButton.h @@ -23,7 +23,6 @@ namespace TaskMngr { class DelButton : public View { - public: DelButton(Evas_Object *parent); virtual ~DelButton(); diff --git a/src/App/inc/MainController.h b/src/App/inc/MainController.h index eac39ff..701742e 100644 --- a/src/App/inc/MainController.h +++ b/src/App/inc/MainController.h @@ -27,7 +27,6 @@ namespace TaskMngr { class MainController : public MainLayout , private ITaskListViewListener { - public: MainController(Evas_Object *parent); virtual ~MainController(); diff --git a/src/App/inc/MainLayout.h b/src/App/inc/MainLayout.h index ac45fc0..319b0f4 100644 --- a/src/App/inc/MainLayout.h +++ b/src/App/inc/MainLayout.h @@ -23,7 +23,6 @@ namespace TaskMngr { class MainLayout : public View { - public: MainLayout(Evas_Object *parent); virtual ~MainLayout(); diff --git a/src/App/inc/TaskListView.h b/src/App/inc/TaskListView.h index 47d2343..7374047 100644 --- a/src/App/inc/TaskListView.h +++ b/src/App/inc/TaskListView.h @@ -29,7 +29,6 @@ namespace TaskMngr class TaskListView : public View { - friend class TaskListViewItem; public: diff --git a/src/App/src/TaskListViewItem.cpp b/src/App/src/TaskListViewItem.cpp index 81abb52..a1d28a0 100644 --- a/src/App/src/TaskListViewItem.cpp +++ b/src/App/src/TaskListViewItem.cpp @@ -67,7 +67,6 @@ TaskListViewItem::TaskListViewItem(TaskListView &parent, const AppInfo &appInfo) m_pDelButton = new DelButton(m_pTaskLayout); m_pDelButton->addSmartCb("clicked", makeCbFirst(&TaskListViewItem::onDelButtonClicked), this); elm_object_part_content_set(m_pTaskLayout, "swl.delete_button", *m_pDelButton); - } TaskListViewItem::~TaskListViewItem() -- 2.7.4