aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKazumasa Mitsunari <knimitz@witz-inc.co.jp>2018-06-10 19:12:32 +0900
committerKazumasa Mitsunari <knimitz@witz-inc.co.jp>2018-06-11 09:01:10 +0900
commitc19969f65fb1441fea3920f5ab5acae09b37397f (patch)
tree04b1cd6f935bfaa7fb5f4b73d7e69910ace335d0
parentbc95ea7e991f78c4753a845b0daa6687a5abbb98 (diff)
Rename files to use "_" instead of "-"
Change-Id: I24b7be71af682946a4abde928e8bb46bf5104041 Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
-rw-r--r--src/CMakeLists.txt4
-rw-r--r--src/app.cpp2
-rw-r--r--src/app.hpp2
-rw-r--r--src/applist.hpp4
-rw-r--r--src/wm_client.cpp (renamed from src/wm-client.cpp)2
-rw-r--r--src/wm_client.hpp (renamed from src/wm-client.hpp)0
-rw-r--r--src/wm_error.cpp (renamed from src/wm-error.cpp)2
-rw-r--r--src/wm_error.hpp (renamed from src/wm-error.h)0
-rw-r--r--test/test.cpp2
9 files changed, 9 insertions, 9 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 6c39170..597a610 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -44,8 +44,8 @@ add_library(${TARGETS_WM} MODULE
config.cpp
config.hpp
policy.hpp
- wm-client.cpp
- wm-error.cpp
+ wm_client.cpp
+ wm_error.cpp
applist.cpp
request.cpp)
diff --git a/src/app.cpp b/src/app.cpp
index 936a8bc..7dbf397 100644
--- a/src/app.cpp
+++ b/src/app.cpp
@@ -36,7 +36,7 @@
#include <regex>
#include <thread>
-#include "wm-client.hpp"
+#include "wm_client.hpp"
extern "C"
diff --git a/src/app.hpp b/src/app.hpp
index 0816732..c46512f 100644
--- a/src/app.hpp
+++ b/src/app.hpp
@@ -33,7 +33,7 @@
#include "wayland_ivi_wm.hpp"
#include "hmi-debug.h"
#include "request.hpp"
-#include "wm-error.h"
+#include "wm_error.hpp"
namespace wl
{
diff --git a/src/applist.hpp b/src/applist.hpp
index b25ca19..23d6b5a 100644
--- a/src/applist.hpp
+++ b/src/applist.hpp
@@ -20,9 +20,9 @@
#include <string>
#include <map>
#include <memory>
-#include "wm-client.hpp"
+#include "wm_client.hpp"
#include "request.hpp"
-#include "wm-error.h"
+#include "wm_error.hpp"
namespace wm
{
diff --git a/src/wm-client.cpp b/src/wm_client.cpp
index 753b1d0..6f1aa20 100644
--- a/src/wm-client.cpp
+++ b/src/wm_client.cpp
@@ -15,7 +15,7 @@
*/
#include <json-c/json.h>
-#include "wm-client.hpp"
+#include "wm_client.hpp"
#include "hmi-debug.h"
#define INVALID_SURFACE_ID 0
diff --git a/src/wm-client.hpp b/src/wm_client.hpp
index 5fa9444..5fa9444 100644
--- a/src/wm-client.hpp
+++ b/src/wm_client.hpp
diff --git a/src/wm-error.cpp b/src/wm_error.cpp
index 4b01922..460b166 100644
--- a/src/wm-error.cpp
+++ b/src/wm_error.cpp
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-#include "wm-error.h"
+#include "wm_error.hpp"
namespace wm {
diff --git a/src/wm-error.h b/src/wm_error.hpp
index 155d791..155d791 100644
--- a/src/wm-error.h
+++ b/src/wm_error.hpp
diff --git a/test/test.cpp b/test/test.cpp
index a4e630c..46195b6 100644
--- a/test/test.cpp
+++ b/test/test.cpp
@@ -3,7 +3,7 @@
#include <gtest/gtest.h>
#include <memory>
#include "applist.hpp"
-#include "wm-client.hpp"
+#include "wm_client.hpp"
// テストグループの定義 TEST_GROUP(group)
// フィクスチャの準備