Apply tizen coding rule 43/67543/5
authoryeji01kim <yeji01.kim@samsung.com>
Wed, 27 Apr 2016 07:49:08 +0000 (16:49 +0900)
committerSungbae Yoo <sungbae.yoo@samsung.com>
Wed, 27 Apr 2016 09:14:20 +0000 (02:14 -0700)
Change-Id: Ibf8090bb6787c508cb3095e59759f8da9e992b59
Signed-off-by: yeji01kim <yeji01.kim@samsung.com>
include/dpm-toolkit-popup.h
include/dpm-toolkit.h

index 84618bb..bcee1fd 100755 (executable)
@@ -1,15 +1,15 @@
 #include "dpm-toolkit.h"
 
 #define handler_display_input_popup(title, selected_policy) \
-if(global_popup.popup_flag == 0) {                                             \
+if (global_popup.popup_flag == 0) {                                            \
        display_input_popup(title, selected_policy);                    \
        return POLICY_RESULT_NONE;                                              \
 }                                                                                                      \
-else                                                                                           \
+else                                                                                                   \
        global_popup.popup_flag = 0;
 
 #define handler_display_radio_popup(title, selected_policy, radio_text, row) \
-if(global_popup.popup_flag == 0) {                                                                             \
+if (global_popup.popup_flag == 0) {                                                                            \
        display_radio_popup(title, selected_policy, radio_text, row);                   \
        return POLICY_RESULT_NONE;                                                                      \
 }                                                                                                                              \
index 59fcf73..e3e0482 100755 (executable)
@@ -41,18 +41,18 @@ typedef struct appdata {
 
 appdata_s* global_ad;
 
-typedef struct dpm_toolkit_entity{
+typedef struct dpm_toolkit_entity {
        char* id;
        int (*handler)(struct dpm_toolkit_entity* self);
        xmlNodePtr model;
        char* entry_input;
        int radio_index;
-}dpm_toolkit_entity_t;
+} dpm_toolkit_entity_t;
 
 typedef struct dpm_toolkit_policy_group {
        char* id;
        GList* policies;
-}dpm_toolkit_policy_group_t;
+} dpm_toolkit_policy_group_t;
 
 typedef struct popup_data {
        Evas_Object* popup;