diff options
-rw-r--r-- | src/CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/app.cpp | 2 | ||||
-rw-r--r-- | src/applist.hpp | 2 | ||||
-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.cpp | 2 |
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) // フィクスチャの準備 |