diff options
-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 |