summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHwankyu Jhun <h.jhun@samsung.com>2016-03-28 13:53:36 +0900
committerHwankyu Jhun <h.jhun@samsung.com>2016-03-31 08:37:45 +0900
commit8f6ede950086973cbee0186e3246c540b7bb7d8e (patch)
tree330ad5a32dde94c887b108b29a55f039c0f9e533 /src
parent1a6d556799df4263cf1f230ba886a2b5d760bf27 (diff)
downloadapplication-8f6ede950086973cbee0186e3246c540b7bb7d8e.tar.gz
application-8f6ede950086973cbee0186e3246c540b7bb7d8e.tar.bz2
application-8f6ede950086973cbee0186e3246c540b7bb7d8e.zip
Adjust coding rules
Change-Id: If4c986183703015e54c53abd4be25a83a3589109 Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
Diffstat (limited to 'src')
-rw-r--r--src/app_device.c3
-rw-r--r--src/app_main.c4
-rw-r--r--src/app_resource.c3
-rw-r--r--src/app_resource_manager.c2
-rw-r--r--src/i18n.c4
5 files changed, 9 insertions, 7 deletions
diff --git a/src/app_device.c b/src/app_device.c
index 4aba0ac..47f9e1a 100644
--- a/src/app_device.c
+++ b/src/app_device.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
+ * Copyright (c) 2011 - 2016 Samsung Electronics Co., Ltd All Rights Reserved
*
* Licensed under the Apache License, Version 2.0 (the License);
* you may not use this file except in compliance with the License.
@@ -47,3 +47,4 @@ app_device_orientation_e app_get_device_orientation(void)
return dev_orientation;
}
+
diff --git a/src/app_main.c b/src/app_main.c
index 6ca4bcc..ccf972c 100644
--- a/src/app_main.c
+++ b/src/app_main.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
+ * Copyright (c) 2011 - 2016 Samsung Electronics Co., Ltd All Rights Reserved
*
* Licensed under the Apache License, Version 2.0 (the License);
* you may not use this file except in compliance with the License.
@@ -469,7 +469,7 @@ static int _ui_app_appcore_suspended_state_changed(void *event_info, void *data)
struct app_event_info event;
LOGI("_ui_app_appcore_suspended_state_changed");
- LOGI("[__SUSPEND__] suspended state: %d (0: suspend, 1: wake)", *(int*)event_info);
+ LOGI("[__SUSPEND__] suspended state: %d (0: suspend, 1: wake)", *(int *)event_info);
event.type = APP_EVENT_SUSPENDED_STATE_CHANGED;
event.value = event_info;
diff --git a/src/app_resource.c b/src/app_resource.c
index 197b565..374472b 100644
--- a/src/app_resource.c
+++ b/src/app_resource.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
+ * Copyright (c) 2011 - 2016 Samsung Electronics Co., Ltd All Rights Reserved
*
* Licensed under the Apache License, Version 2.0 (the License);
* you may not use this file except in compliance with the License.
@@ -46,3 +46,4 @@ void *app_get_preinitialized_conformant(void)
{
return elm_conformant_precreated_object_get();
}
+
diff --git a/src/app_resource_manager.c b/src/app_resource_manager.c
index fecec4b..f7f5ba0 100644
--- a/src/app_resource_manager.c
+++ b/src/app_resource_manager.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
+ * Copyright (c) 2015 - 2016 Samsung Electronics Co., Ltd All Rights Reserved
*
* Licensed under the Apache License, Version 2.0 (the License);
* you may not use this file except in compliance with the License.
diff --git a/src/i18n.c b/src/i18n.c
index babfa99..c22ebbf 100644
--- a/src/i18n.c
+++ b/src/i18n.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
+ * Copyright (c) 2011 - 2016 Samsung Electronics Co., Ltd All Rights Reserved
*
* Licensed under the Apache License, Version 2.0 (the License);
* you may not use this file except in compliance with the License.
@@ -22,7 +22,7 @@
#include <app_i18n.h>
-char* i18n_get_text(const char *message)
+char *i18n_get_text(const char *message)
{
return gettext(message);
}