Rename file names 15/17215/2
authorKazumasa Mitsunari <knimitz@witz-inc.co.jp>
Mon, 15 Oct 2018 05:45:32 +0000 (14:45 +0900)
committerKazumasa Mitsunari <knimitz@witz-inc.co.jp>
Mon, 15 Oct 2018 07:00:54 +0000 (07:00 +0000)
Rename layers.* to wm_layers.*

Change-Id: If472c2b8f978231816f5c21edb0c53a6ee96d629
Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
src/CMakeLists.txt
src/window_manager.hpp
src/wm_layer.cpp [moved from src/layers.cpp with 99% similarity]
src/wm_layer.hpp [moved from src/layers.hpp with 98% similarity]

index 91908e8..223dd33 100644 (file)
@@ -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
index f23719f..b591149 100644 (file)
@@ -23,7 +23,7 @@
 #include <experimental/optional>
 #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"
similarity index 99%
rename from src/layers.cpp
rename to src/wm_layer.cpp
index e1a232a..6a98884 100644 (file)
@@ -16,7 +16,7 @@
 
 #include <regex>
 
-#include "layers.hpp"
+#include "wm_layer.hpp"
 #include "json_helper.hpp"
 #include "util.hpp"
 
similarity index 98%
rename from src/layers.hpp
rename to src/wm_layer.hpp
index 3a16985..4dd4616 100644 (file)
@@ -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 <string>
 
@@ -155,4 +155,4 @@ static const nlohmann::json default_layers_json = {
 };
 } // namespace wm
 
-#endif // TMCAGLWM_LAYERS_H
+#endif // WM_LAYERS_H