aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKazumasa Mitsunari <knimitz@witz-inc.co.jp>2018-05-31 19:26:01 +0900
committerKazumasa Mitsunari <knimitz@witz-inc.co.jp>2018-05-31 19:26:01 +0900
commit0602a4156ef549a2a229ba32b141f508230b43ad (patch)
treeb038cac00c5709e887f157583a95197ced8b5518
parent92a48ccfc61ae0452bc814c3baa4e4c0ce885890 (diff)
Rename windowmanager-client
Change-Id: I601f0b542d530b1b72198b56b8bd98322836e469 Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
-rw-r--r--src/CMakeLists.txt2
-rw-r--r--src/app.cpp2
-rw-r--r--src/applist.hpp2
-rw-r--r--src/wm-client.cpp (renamed from src/windowmanager-client.cpp)2
-rw-r--r--src/wm-client.hpp (renamed from src/windowmanager-client.hpp)0
-rw-r--r--test/test.cpp2
6 files changed, 5 insertions, 5 deletions
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 <regex>
#include <thread>
-#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 <map>
#include <memory>
//#include <experimental/optional>
-#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
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
index 33024b0..33024b0 100644
--- a/src/windowmanager-client.hpp
+++ b/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 <gtest/gtest.h>
#include <memory>
#include "applist.hpp"
-#include "windowmanager-client.hpp"
+#include "wm-client.hpp"
// テストグループの定義 TEST_GROUP(group)
// フィクスチャの準備