fix coding rule error 11/149711/1
authorYoungjae Shin <yj99.shin@samsung.com>
Wed, 13 Sep 2017 02:38:47 +0000 (11:38 +0900)
committerYoungjae Shin <yj99.shin@samsung.com>
Wed, 13 Sep 2017 02:39:03 +0000 (11:39 +0900)
Change-Id: I3e8a62f7bdcc11ace0fda262b152b21e9cd33556
Signed-off-by: Youngjae Shin <yj99.shin@samsung.com>
include/SLP_UI_Gadget_PG.h
src/manager.c

index 84712b9..2810a13 100755 (executable)
@@ -885,7 +885,7 @@ To disable transition effect :
                        break;
                default:
                        break;
-        }
+       }
 @endcode
 
  * @}
index e10935e..6510f23 100644 (file)
@@ -588,9 +588,8 @@ static int ugman_ug_getopt(ui_gadget_h ug)
                return -1;
 
        /* Indicator Option */
-       if (ug->mode == UG_MODE_FULLVIEW) {
+       if (ug->mode == UG_MODE_FULLVIEW)
                ugman_indicator_update(ug->opt, UG_EVENT_NONE);
-       }
 
        return 0;
 }
@@ -1366,11 +1365,10 @@ void *ugman_get_conformant(void)
                return NULL;
        }
 
-       if (eng_ops && eng_ops->create) {
+       if (eng_ops && eng_ops->create)
                ret = eng_ops->request(ug_man.win, NULL, UG_UI_REQ_GET_CONFORMANT);
-       } else {
+       else
                _WRN("ui engine is not loaded");
-       }
 
        return ret;
 }