Fix unnecessary code (meaningless) 66/38666/1
authorKim Tae Soo <taesoo46.kim@samsung.com>
Fri, 24 Apr 2015 04:00:14 +0000 (13:00 +0900)
committerKim Tae Soo <taesoo46.kim@samsung.com>
Fri, 24 Apr 2015 04:00:14 +0000 (13:00 +0900)
Change-Id: Ia4ab92c8aee2980a6f026c2d52f32365b99e2426
Signed-off-by: Kim Tae Soo <taesoo46.kim@samsung.com>
src/views/base-view.cpp
src/views/context-view.cpp
src/views/playback-view.cpp

index 50ed0a4..0bcaf37 100644 (file)
@@ -728,7 +728,7 @@ bool CMusicBaseView::Create(void *data)
                _CHECK(m->base = CCommonUI::AddBase(m->win, MUSIC_BASE_VIEW))
                _CHECK(m->lmgr = new CLayoutMgr)
                _CHECK(m->lmgr->Create(m->base, NULL))
-               _CHECK(CBaseView::Create(data))
+               _CHECK(CBaseView::Create(NULL))
                _CHECK(m->layoutSong = new CSongLayout(MUSIC_SONG_LAYOUT))
                _CHECK(m->layoutSong->Create(m->lmgr, m_Argument(data)))
                _CHECK(m->lmgr->AddLayout(m->layoutSong))
index 91258f0..383bf4b 100644 (file)
@@ -1253,7 +1253,7 @@ bool CContextView::Create(void *data)
                _CHECK(m->pController = new CMusicController)
                _CHECK(m->pController->Create())
                _CHECK(m->base = CCommonUI::AddBase(m->win, MUSIC_CONTEXT_VIEW))
-               _CHECK(CBaseView::Create(data))
+               _CHECK(CBaseView::Create(NULL))
 
                _WHEN_SUCCESS{
                        m->type = ctxtinfo->type;
index 5db1e89..c8997e1 100644 (file)
@@ -928,7 +928,7 @@ bool CPlaybackView::Create(void *data)
                _CHECK(m->pController = new CMusicController)
                _CHECK(m->pController->Create())
                _CHECK(m->eoBase = CCommonUI::AddBase(m->eoWin, MUSIC_PLAYBACK_VIEW))
-               _CHECK(CBaseView::Create(data))
+               _CHECK(CBaseView::Create(NULL))
                _CHECK(CTimer::Create());
                _CHECK(m->pController->AddListener(this))
                _CHECK(m->pPlaybackController = new CPlaybackController)