dbg.h file is removed. 29/38429/1
authorKim Youngjin <yj21c.kim@samsung.com>
Mon, 20 Apr 2015 23:05:23 +0000 (08:05 +0900)
committerKim Youngjin <yj21c.kim@samsung.com>
Mon, 20 Apr 2015 23:06:46 +0000 (08:06 +0900)
Change-Id: Ibbf1b636dfb25343a86089d67e35062732bfe431
Signed-off-by: Kim Youngjin <yj21c.kim@samsung.com>
43 files changed:
include/dbg.h [deleted file]
src/data/AlbumStorage.cpp
src/data/CategoryStorage.cpp
src/data/FolderStorage.cpp
src/data/SongStorage.cpp
src/data/album_info.cpp
src/data/bus.cpp
src/data/category_info.cpp
src/data/folder_info.cpp
src/data/mediadata.cpp
src/data/song_info.cpp
src/main.cpp
src/playback/MusicControllerImpl.cpp
src/playback/music-controller.cpp
src/playback/playback-mgr.cpp
src/playback/playlist-mgr.cpp
src/playback/volume-control.cpp
src/views/ErrorPopupWindow.cpp
src/views/ExtBaseLayout.cpp
src/views/HandleVolume.cpp
src/views/Info.cpp
src/views/PlayListCtxPopup.cpp
src/views/PlaySettingCtxPopup.cpp
src/views/PlaybackController.cpp
src/views/RemovePopupWindow.cpp
src/views/SliderWidget.cpp
src/views/SortCtxPopup.cpp
src/views/SourceCtxPopup.cpp
src/views/Timer.cpp
src/views/album-layout.cpp
src/views/album-songs-layout.cpp
src/views/artist-layout.cpp
src/views/base-view.cpp
src/views/category-layout.cpp
src/views/category-songs-layout.cpp
src/views/common-ui.cpp
src/views/context-view.cpp
src/views/entry-popup.cpp
src/views/folder-layout.cpp
src/views/genre-layout.cpp
src/views/playback-view.cpp
src/views/playlist-layout.cpp
src/views/song-layout.cpp

diff --git a/include/dbg.h b/include/dbg.h
deleted file mode 100644 (file)
index 6163a5c..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * Copyright (c) 2014 Samsung Electronics Co., Ltd All Rights Reserved
- *
- * Licensed under the Apache License, Version 2.0 (the License);
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an AS IS BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#ifndef __DBG_H__
-#define __DBG_H__
-
-#include <dlog.h>
-
-#ifdef LOG_TAG
-#undef LOG_TAG
-#endif
-#define LOG_TAG "org.tizen.music-player-tv-ref"
-
-#ifndef _ERR
-#define _ERR(fmt, args...) LOGE("[%s:%d] "fmt"\n", __func__, __LINE__, ##args)
-#endif
-
-#ifndef _DBG
-#define _DBG(fmt, args...) LOGD("[%s:%d] "fmt"\n", __func__, __LINE__, ##args)
-#endif
-
-#ifndef _INFO
-#define _INFO(fmt, args...) LOGI("[%s:%d] "fmt"\n", __func__, __LINE__, ##args)
-#endif
-
-/* enums */
-enum music_error_status {
-       MUSIC_ERROR = -1,
-       MUSIC_ERROR_NONE
-};
-
-#endif /* __DBG_H__ */
index 57892a5..045018c 100644 (file)
@@ -20,7 +20,6 @@
 #include <stdlib.h>
 #include <string.h>
 
-#include "dbg.h"
 #include "i18n.h"
 #include "define.h"
 
index b740717..11cbed3 100644 (file)
@@ -19,7 +19,6 @@
 #include <stdlib.h>
 #include <string.h>
 
-#include "dbg.h"
 #include "i18n.h"
 #include "define.h"
 
index e64264c..53f6c98 100644 (file)
@@ -19,7 +19,6 @@
 #include <sys/time.h>
 #include <stdlib.h>
 #include <string.h>
-#include "dbg.h"
 #include "i18n.h"
 #include "define.h"
 
index 1565eb7..a80f5ac 100644 (file)
@@ -18,7 +18,6 @@
 #include <sys/time.h>
 #include <stdlib.h>
 #include <string.h>
-#include "dbg.h"
 #include "i18n.h"
 #include "define.h"
 
index 722db2a..27490a2 100644 (file)
@@ -16,7 +16,6 @@
 
 #include <stdlib.h>
 #include <string.h>
-#include "dbg.h"
 #include "i18n.h"
 #include <AppCommon.h>
 #include "album_info.h"
index 06dd8ad..bfcbe0a 100644 (file)
 
 #include <gio/gio.h>
 #include <stdlib.h>
-#include <dbg.h>
 
-#define BUS_NAME "org.tizen.tv.homescreen.music"
+#include <MacroDefine.h>
+
+#define BUS_NAME        "org.tizen.tv.homescreen.music"
 #define BUS_OBJECT_PATH "/org/tizen/tv/music"
-#define BUS_INTERFACE "org.tizen.tv.homescreen.dynamicbox"
+#define BUS_INTERFACE   "org.tizen.tv.homescreen.dynamicbox"
 #define BUS_SIGNAL_UPDATE "Update"
 #define BUS_TYPE G_BUS_TYPE_SYSTEM
 
index 69a6639..edf40f8 100644 (file)
@@ -16,8 +16,8 @@
 
 #include <stdlib.h>
 #include <string.h>
-#include "dbg.h"
 #include "i18n.h"
+
 #include <AppCommon.h>
 #include "define.h"
 #include "category_info.h"
index 5e722f3..3b44ee2 100644 (file)
@@ -16,7 +16,6 @@
 
 #include <stdlib.h>
 #include <string.h>
-#include "dbg.h"
 #include "i18n.h"
 #include <AppCommon.h>
 #include "folder_info.h"
index 532e9c4..83bbfe4 100644 (file)
@@ -18,7 +18,6 @@
 #include <sys/time.h>
 #include <stdlib.h>
 #include <string.h>
-#include "dbg.h"
 #include "i18n.h"
 #include "define.h"
 
index b90a22f..d4e5361 100644 (file)
@@ -16,7 +16,6 @@
 
 #include <stdlib.h>
 #include <string.h>
-#include "dbg.h"
 #include "i18n.h"
 #include <AppCommon.h>
 #include "song_info.h"
index 3a1a133..1ec108c 100644 (file)
@@ -14,7 +14,6 @@
  * limitations under the License.
  */
 
-#include "dbg.h"
 #include <AppCommon.h>
 
 #include "song_info.h"
@@ -32,6 +31,9 @@
 #define MUSIC_WIN_TITLE        "Music Player"
 
 
+SET_TAG("org.tizen.music-player-tv-ref");
+
+
 class CApp : public CBaseApp {
 private:
 
index d8fd311..b5d98f9 100644 (file)
@@ -16,7 +16,6 @@
 
 #include <string.h>
 #include <stdlib.h>
-#include "dbg.h"
 #include "i18n.h"
 #include <AppCommon.h>
 
index fc05009..c4b012c 100644 (file)
@@ -1,6 +1,5 @@
 #include <string.h>
 #include <stdlib.h>
-#include "dbg.h"
 #include <AppCommon.h>
 #include "song_info.h"
 #include "common.h"
index 99fac0d..f18fa38 100644 (file)
@@ -16,7 +16,6 @@
 
 #include <stdlib.h>
 #include "i18n.h"
-#include "dbg.h"
 #include <AppCommon.h>
 #include "playback-mgr.h"
 
index 23b53f1..60cf351 100644 (file)
@@ -16,7 +16,6 @@
 
 #include <stdlib.h>
 #include <string.h>
-#include "dbg.h"
 #include "i18n.h"
 #include <AppCommon.h>
 #include "song_info.h"
index 2d4da2f..b9a23cd 100644 (file)
@@ -17,7 +17,6 @@
 #include <stdlib.h>
 #include <media/sound_manager.h>
 #include <volume-control.h>
-#include "dbg.h"
 #include <AppCommon.h>
 
 
index 27283ca..352de4f 100644 (file)
@@ -16,7 +16,6 @@
 
 #include "i18n.h"
 #include "define.h"
-#include "dbg.h"
 #include <AppCommon.h>
 #include "common.h"
 #include "ErrorPopupWindow.h"
index 930da87..4a84a0c 100644 (file)
@@ -14,7 +14,6 @@
  * limitations under the License.
  */
 
-#include "dbg.h"
 #include <AppCommon.h>
 #include "ExtBaseLayout.h"
 
index f96f9e7..ec0abdc 100644 (file)
@@ -14,7 +14,6 @@
  * limitations under the License.
  */
 
-#include "dbg.h"
 #include "define.h"
 #include <AppCommon.h>
 #include "common.h"
index 01bebbb..0c09e22 100644 (file)
@@ -15,7 +15,6 @@
 */
 
 #include "i18n.h"
-#include "dbg.h"
 #include "define.h"
 #include "common.h"
 #include "Info.h"
index 905ab32..124192e 100644 (file)
@@ -16,7 +16,6 @@
 
 #include "i18n.h"
 #include "define.h"
-#include "dbg.h"
 #include <AppCommon.h>
 #include "common.h"
 #include "Info.h"
index 8049089..097361f 100644 (file)
@@ -18,7 +18,6 @@
 #include "define.h"
 #include "common.h"
 #include "Info.h"
-#include "dbg.h"
 #include <AppCommon.h>
 #include "PlaySettingCtxPopup.h"
 
index 7221ef4..7628753 100644 (file)
@@ -16,7 +16,6 @@
 
 #include "define.h"
 #include "common.h"
-#include "dbg.h"
 #include <AppCommon.h>
 
 #include "song_info.h"
index 8ca93e0..8b19d0b 100644 (file)
@@ -16,7 +16,6 @@
 
 #include "i18n.h"
 #include "define.h"
-#include "dbg.h"
 #include <AppCommon.h>
 #include "common.h"
 #include "RemovePopupWindow.h"
index b3362d7..5eb87d1 100644 (file)
@@ -16,7 +16,6 @@
 
 #include "define.h"
 #include "common.h"
-#include "dbg.h"
 #include <AppCommon.h>
 
 #include "song_info.h"
index 2bb8fb0..62003ad 100644 (file)
@@ -16,7 +16,6 @@
 
 #include "i18n.h"
 #include "define.h"
-#include "dbg.h"
 #include <AppCommon.h>
 
 #include "Info.h"
index fbacc77..1d79e81 100644 (file)
@@ -18,7 +18,6 @@
 #include "define.h"
 #include "common.h"
 #include "Info.h"
-#include "dbg.h"
 #include <AppCommon.h>
 #include "SourceCtxPopup.h"
 
index efde40a..0c447c5 100644 (file)
@@ -17,7 +17,6 @@
 
 #include "define.h"
 #include "common.h"
-#include "dbg.h"
 #include <AppCommon.h>
 #include "Timer.h"
 
index 09ebfea..e89e374 100644 (file)
@@ -14,7 +14,6 @@
  * limitations under the License.
 */
 
-#include "dbg.h"
 #include <AppCommon.h>
 #include "i18n.h"
 #include "define.h"
index 8740290..4e327f2 100644 (file)
@@ -14,7 +14,6 @@
  * limitations under the License.
  */
 
-#include "dbg.h"
 #include "i18n.h"
 #include <AppCommon.h>
 #include "define.h"
index f6b7a70..32efc3a 100644 (file)
@@ -14,7 +14,6 @@
  * limitations under the License.
  */
 
-#include "dbg.h"
 #include <AppCommon.h>
 #include "i18n.h"
 #include "define.h"
index d2d00f9..d5c943c 100644 (file)
@@ -16,7 +16,6 @@
 
 #include "i18n.h"
 #include "define.h"
-#include "dbg.h"
 #include <AppCommon.h>
 
 #include "common.h"
index d78a415..827fc28 100644 (file)
@@ -14,7 +14,6 @@
  * limitations under the License.
  */
 
-#include "dbg.h"
 #include <AppCommon.h>
 #include "i18n.h"
 #include "define.h"
index 8aff6ac..6294f43 100644 (file)
@@ -14,7 +14,6 @@
 * limitations under the License.
 */
 
-#include "dbg.h"
 #include "i18n.h"
 #include <AppCommon.h>
 
index 6d73506..af07e9c 100644 (file)
@@ -16,7 +16,7 @@
 
 #include "i18n.h"
 #include "define.h"
-#include "dbg.h"
+
 #include <AppCommon.h>
 #include "common.h"
 #include "common-ui.h"
index bb76472..a99cba3 100644 (file)
@@ -14,7 +14,6 @@
  * limitations under the License.
  */
 
-#include "dbg.h"
 #include "i18n.h"
 #include <AppCommon.h>
 #include "define.h"
index d4ed9a1..8395295 100644 (file)
@@ -16,7 +16,6 @@
 
 #include "i18n.h"
 #include "define.h"
-#include "dbg.h"
 #include <AppCommon.h>
 
 #include "common.h"
index 9dd0c50..237905c 100644 (file)
@@ -14,7 +14,6 @@
  * limitations under the License.
  */
 
-#include "dbg.h"
 #include <AppCommon.h>
 #include "i18n.h"
 #include "define.h"
index 7b25431..36ebff2 100644 (file)
@@ -14,7 +14,6 @@
  * limitations under the License.
  */
 
-#include "dbg.h"
 #include <AppCommon.h>
 #include "i18n.h"
 #include "define.h"
index e0b7f07..077fd2b 100644 (file)
@@ -16,7 +16,6 @@
 
 #include "define.h"
 #include "common.h"
-#include "dbg.h"
 #include <AppCommon.h>
 
 #include "Timer.h"
index aa12123..f55c086 100644 (file)
@@ -14,7 +14,6 @@
  * limitations under the License.
  */
 
-#include "dbg.h"
 #include "i18n.h"
 #include <AppCommon.h>
 
index 4fd284f..d212091 100644 (file)
@@ -14,7 +14,6 @@
  * limitations under the License.
  */
 
-#include "dbg.h"
 #include "i18n.h"
 #include <AppCommon.h>