From 2fd5d33ca200d27c73e0fffc57987ddc751eb84a Mon Sep 17 00:00:00 2001 From: Kazumasa Mitsunari Date: Mon, 15 Oct 2018 14:45:32 +0900 Subject: [PATCH] Rename file names Rename layers.* to wm_layers.* Change-Id: If472c2b8f978231816f5c21edb0c53a6ee96d629 Signed-off-by: Kazumasa Mitsunari --- src/CMakeLists.txt | 2 +- src/window_manager.hpp | 2 +- src/{layers.cpp => wm_layer.cpp} | 2 +- src/{layers.hpp => wm_layer.hpp} | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) rename src/{layers.cpp => wm_layer.cpp} (99%) rename src/{layers.hpp => wm_layer.hpp} (98%) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 91908e8..223dd33 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -33,7 +33,7 @@ add_library(${TARGETS_WM} MODULE ${IVI_CON_PROTO} json_helper.cpp window_manager.cpp - layers.cpp + wm_layer.cpp wm_client.cpp wm_error.cpp applist.cpp diff --git a/src/window_manager.hpp b/src/window_manager.hpp index f23719f..b591149 100644 --- a/src/window_manager.hpp +++ b/src/window_manager.hpp @@ -23,7 +23,7 @@ #include #include "util.hpp" #include "controller_hooks.hpp" -#include "layers.hpp" +#include "wm_layer.hpp" #include "layout.hpp" #include "wayland_ivi_wm.hpp" #include "pm_wrapper.hpp" diff --git a/src/layers.cpp b/src/wm_layer.cpp similarity index 99% rename from src/layers.cpp rename to src/wm_layer.cpp index e1a232a..6a98884 100644 --- a/src/layers.cpp +++ b/src/wm_layer.cpp @@ -16,7 +16,7 @@ #include -#include "layers.hpp" +#include "wm_layer.hpp" #include "json_helper.hpp" #include "util.hpp" diff --git a/src/layers.hpp b/src/wm_layer.hpp similarity index 98% rename from src/layers.hpp rename to src/wm_layer.hpp index 3a16985..4dd4616 100644 --- a/src/layers.hpp +++ b/src/wm_layer.hpp @@ -14,8 +14,8 @@ * limitations under the License. */ -#ifndef TMCAGLWM_LAYERS_H -#define TMCAGLWM_LAYERS_H +#ifndef WM_LAYERS_H +#define WM_LAYERS_H #include @@ -155,4 +155,4 @@ static const nlohmann::json default_layers_json = { }; } // namespace wm -#endif // TMCAGLWM_LAYERS_H +#endif // WM_LAYERS_H -- 2.16.6