diff options
author | Kazumasa Mitsunari <knimitz@witz-inc.co.jp> | 2018-06-22 18:42:54 +0900 |
---|---|---|
committer | Kazumasa Mitsunari <knimitz@witz-inc.co.jp> | 2018-06-22 18:42:54 +0900 |
commit | 587d384f52c624a75eafe2588b728de4cdd53e4f (patch) | |
tree | 412d7fcd22a29af3b1dbc41f158647e5977d55bc | |
parent | 77bcaac2f5dee79f062a7fd4b7e68ed8aaf82e4c (diff) |
Rename app -> window_manager
Change-Id: I4568b60623867ca70bf53852fa033d660acf8f35
Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
-rw-r--r-- | src/CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/main.cpp | 2 | ||||
-rw-r--r-- | src/window_manager.cpp (renamed from src/app.cpp) | 2 | ||||
-rw-r--r-- | src/window_manager.hpp (renamed from src/app.hpp) | 0 |
4 files changed, 3 insertions, 3 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index db3f9cd..265720c 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -32,7 +32,7 @@ add_library(${TARGETS_WM} MODULE layout.cpp ${IVI_CON_PROTO} json_helper.cpp - app.cpp + window_manager.cpp layers.cpp wm_client.cpp wm_error.cpp diff --git a/src/main.cpp b/src/main.cpp index a813faa..feb2124 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -19,7 +19,7 @@ #include <mutex> #include <json.h> #include "../include/json.hpp" -#include "app.hpp" +#include "window_manager.hpp" #include "json_helper.hpp" #include "wayland_ivi_wm.hpp" diff --git a/src/app.cpp b/src/window_manager.cpp index de7686f..70228fa 100644 --- a/src/app.cpp +++ b/src/window_manager.cpp @@ -17,7 +17,7 @@ #include <fstream> #include <regex> -#include "app.hpp" +#include "window_manager.hpp" #include "../include/json.hpp" #include "applist.hpp" diff --git a/src/app.hpp b/src/window_manager.hpp index af7cd8f..af7cd8f 100644 --- a/src/app.hpp +++ b/src/window_manager.hpp |