From 25509db9a7b345e0491bbe7d08c1702b333d357b Mon Sep 17 00:00:00 2001 From: Mu-Woong Lee Date: Tue, 8 Aug 2017 17:17:58 +0900 Subject: [PATCH] Version 4.0.3: Rename ServerBase.* to MainLoop.* by following the Tizen naming rules Change-Id: Ib0ff13737207bd4c93536392d73c0a62e947122c Signed-off-by: Mu-Woong Lee --- packaging/context-service.spec | 2 +- src/agent/AgentMain.cpp | 2 +- src/server/ServerMain.cpp | 2 +- src/shared/{ServerBase.cpp => MainLoop.cpp} | 2 +- src/shared/{ServerBase.h => MainLoop.h} | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) rename src/shared/{ServerBase.cpp => MainLoop.cpp} (98%) rename src/shared/{ServerBase.h => MainLoop.h} (90%) diff --git a/packaging/context-service.spec b/packaging/context-service.spec index 176a5d5..8b54afa 100644 --- a/packaging/context-service.spec +++ b/packaging/context-service.spec @@ -1,6 +1,6 @@ Name: context-service Summary: Tizen Contextual Service Framework -Version: 4.0.2 +Version: 4.0.3 Release: 1 Group: Service/Context License: Apache-2.0 diff --git a/src/agent/AgentMain.cpp b/src/agent/AgentMain.cpp index fd271be..eba8448 100644 --- a/src/agent/AgentMain.cpp +++ b/src/agent/AgentMain.cpp @@ -18,7 +18,7 @@ #include #include -#include +#include #include "AgentDBus.h" #include "AgentUtil.h" #include "PluginLoader.h" diff --git a/src/server/ServerMain.cpp b/src/server/ServerMain.cpp index ae62b7c..9274f8b 100644 --- a/src/server/ServerMain.cpp +++ b/src/server/ServerMain.cpp @@ -20,7 +20,7 @@ #include #include -#include +#include #include "DBusConnector.h" #include "ServiceLoader.h" #include "ActiveUserMonitor.h" diff --git a/src/shared/ServerBase.cpp b/src/shared/MainLoop.cpp similarity index 98% rename from src/shared/ServerBase.cpp rename to src/shared/MainLoop.cpp index 2f60ced..faef344 100644 --- a/src/shared/ServerBase.cpp +++ b/src/shared/MainLoop.cpp @@ -17,7 +17,7 @@ #include #include #include -#include "ServerBase.h" +#include "MainLoop.h" #define NEW_FAIL_LIMIT 3 diff --git a/src/shared/ServerBase.h b/src/shared/MainLoop.h similarity index 90% rename from src/shared/ServerBase.h rename to src/shared/MainLoop.h index e3bf1e4..c6e8c78 100644 --- a/src/shared/ServerBase.h +++ b/src/shared/MainLoop.h @@ -14,8 +14,8 @@ * limitations under the License. */ -#ifndef __CONEXT_SERVER_BASE_H__ -#define __CONEXT_SERVER_BASE_H__ +#ifndef __CONEXT_SERVICE_MAIN_LOOP_H__ +#define __CONEXT_SERVICE_MAIN_LOOP_H__ #include -- 2.34.1