Fix to apply whitespace coding rules 42/92442/1
authorSungbae Yoo <sungbae.yoo@samsung.com>
Mon, 17 Oct 2016 04:44:19 +0000 (13:44 +0900)
committerSungbae Yoo <sungbae.yoo@samsung.com>
Mon, 17 Oct 2016 04:51:40 +0000 (13:51 +0900)
Signed-off-by: Sungbae Yoo <sungbae.yoo@samsung.com>
Change-Id: Ia2992812c94045a19b5133deccab9f250c690270

module/krate.cpp
rmi/app-proxy.h
rmi/package-proxy.h

index 409b12e..f057748 100644 (file)
@@ -61,7 +61,7 @@ static int wait_condition(void)
 
     int (*wait_mount_user)(void);
 
-    r = access(LAZYMOUNT_LIB,F_OK);
+    r = access(LAZYMOUNT_LIB, F_OK);
     if (r < 0){
         fprintf(stderr, "cannot find lazymount module - No support lazymount\n");
         return 0;
@@ -74,7 +74,7 @@ static int wait_condition(void)
     }
 
        do{
-        wait_mount_user = (int (*)())dlsym(h,"wait_mount_user");
+        wait_mount_user = (int (*)())dlsym(h, "wait_mount_user");
         if (!wait_mount_user) {
             fprintf(stderr, "dlsym wait_mount_user error\n");
             dlclose(h);
index 61c0f64..2790f28 100644 (file)
@@ -44,10 +44,8 @@ public:
                bool isTaskManaged;
 
                REFLECTABLE
-               (
-                       krate, id, locale, package, type, icon, label,
-                       componentType, isNoDisplayed, isTaskManaged
-               );
+               (krate, id, locale, package, type, icon, label,
+                componentType, isNoDisplayed, isTaskManaged);
        };
 
        AppInfo getAppInfo(const std::string& name, const std::string& appid);
@@ -72,9 +70,7 @@ public:
                std::vector<Extra> extraData;
 
                REFLECTABLE
-               (
-                       operation, uri, mime, category, appId, extraData
-               );
+               (operation, uri, mime, category, appId, extraData);
        };
 
        int launch(const std::string& name, const Bundle& bundle);
index 271d838..c4671ef 100644 (file)
@@ -53,10 +53,8 @@ public:
                bool isPreload;
 
                REFLECTABLE
-               (
-                       krate, id, locale, type, icon, label, description, author,
-                       version, apiVersion, mainAppId, isSystem, isRemovable, isPreload
-               );
+               (krate, id, locale, type, icon, label, description, author,
+                version, apiVersion, mainAppId, isSystem, isRemovable, isPreload);
        };
 
        PackageInfo getPackageInfo(const std::string& name, const std::string& pkgid);