From 0602a4156ef549a2a229ba32b141f508230b43ad Mon Sep 17 00:00:00 2001 From: Kazumasa Mitsunari Date: Thu, 31 May 2018 19:26:01 +0900 Subject: [PATCH 1/1] Rename windowmanager-client Change-Id: I601f0b542d530b1b72198b56b8bd98322836e469 Signed-off-by: Kazumasa Mitsunari --- src/CMakeLists.txt | 2 +- src/app.cpp | 2 +- src/applist.hpp | 2 +- src/{windowmanager-client.cpp => wm-client.cpp} | 2 +- src/{windowmanager-client.hpp => wm-client.hpp} | 0 test/test.cpp | 2 +- 6 files changed, 5 insertions(+), 5 deletions(-) rename src/{windowmanager-client.cpp => wm-client.cpp} (98%) rename src/{windowmanager-client.hpp => wm-client.hpp} (100%) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index f2ae36b..f811be3 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -44,7 +44,7 @@ add_library(${TARGETS_WM} MODULE config.cpp config.hpp policy.hpp - windowmanager-client.cpp + wm-client.cpp applist.cpp request.cpp) diff --git a/src/app.cpp b/src/app.cpp index 00f391a..be53808 100644 --- a/src/app.cpp +++ b/src/app.cpp @@ -35,7 +35,7 @@ #include #include -#include "windowmanager-client.hpp" +#include "wm-client.hpp" #include "applist.hpp" extern "C" diff --git a/src/applist.hpp b/src/applist.hpp index d2a5971..241f153 100644 --- a/src/applist.hpp +++ b/src/applist.hpp @@ -21,7 +21,7 @@ #include #include //#include -#include "windowmanager-client.hpp" +#include "wm-client.hpp" #include "request.hpp" namespace wm diff --git a/src/windowmanager-client.cpp b/src/wm-client.cpp similarity index 98% rename from src/windowmanager-client.cpp rename to src/wm-client.cpp index 1bda793..4e0ff01 100644 --- a/src/windowmanager-client.cpp +++ b/src/wm-client.cpp @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "windowmanager-client.hpp" +#include "wm-client.hpp" #include "hmi-debug.h" #define INVALID_SURFACE_ID 0 diff --git a/src/windowmanager-client.hpp b/src/wm-client.hpp similarity index 100% rename from src/windowmanager-client.hpp rename to src/wm-client.hpp diff --git a/test/test.cpp b/test/test.cpp index 716f0ef..a4e630c 100644 --- a/test/test.cpp +++ b/test/test.cpp @@ -3,7 +3,7 @@ #include #include #include "applist.hpp" -#include "windowmanager-client.hpp" +#include "wm-client.hpp" // テストグループの定義 TEST_GROUP(group) // フィクスチャの準備 -- 2.16.6