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-12 10:16:27 +0900
commit14be8c3bcc558d319f3324f06a5700b9155d2aa6 (patch)
tree358746b4bb29eacad528ff22c53ad8b45bfb996a
parentb9ad63927d1eb1de0be4cd3cb59feeaae054bb40 (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 5bd597c..db00dea 100644
--- a/src/app.cpp
+++ b/src/app.cpp
@@ -35,7 +35,7 @@
#include <regex>
#include <thread>
-#include "wm-client.hpp"
+#include "wm_client.hpp"
#include "applist.hpp"
extern "C"
diff --git a/src/app.hpp b/src/app.hpp
index 7ead82e..a91654d 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 0f2285b..159d5ab 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)
// フィクスチャの準備