Fix build error 09/57209/1
authorJihoon Kim <jihoon48.kim@samsung.com>
Mon, 18 Jan 2016 04:07:52 +0000 (13:07 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Mon, 18 Jan 2016 04:07:52 +0000 (13:07 +0900)
Change-Id: I480b6bfe91680090a87f0288d3af6520d26ce4a9

scl/gwes/efl/sclanimator-efl.cpp
scl/sclcontext.cpp
xmlresource/layout_parser.cpp
xmlresource/modifier_decoration_parser.cpp

index 9f46731..e969c85 100644 (file)
@@ -84,7 +84,7 @@ CSCLAnimatorImplEfl::animator_timer(SclAnimationState *state)
                         Evas_Object *window_object = static_cast<Evas_Object*>(windows->get_base_window());
                         Evas *evas = evas_object_evas_get(window_object);
                         m_highlight_ui_object = evas_object_image_add(evas);
-                        sclchar composed_path[POSIX_PATH_MAX] = {0, };
+                        sclchar composed_path[_POSIX_PATH_MAX] = {0, };
                         utils->get_composed_path(composed_path, IMG_PATH_PREFIX, SCL_HIGHLIGHT_UI_IMAGE);
                         evas_object_image_file_set(m_highlight_ui_object, composed_path, NULL);
                     }
@@ -159,4 +159,4 @@ CSCLAnimatorImplEfl::animator_timer(SclAnimationState *state)
             break;
         }
     }
-}
\ No newline at end of file
+}
index 050517a..6c28833 100644 (file)
@@ -104,7 +104,7 @@ CSCLContext::get_popup_layout(sclwindow window) const
 }
 
 void
-CSCLContext::set_popup_layout(clwindow window, sclshort val )
+CSCLContext::set_popup_layout(sclwindow window, sclshort val)
 {
     SCL_DEBUG();
 
@@ -118,7 +118,7 @@ CSCLContext::set_popup_layout(clwindow window, sclshort val )
 }
 
 void
-CSCLContext::set_base_layout(sclshort val )
+CSCLContext::set_base_layout(sclshort val)
 {
     SCL_DEBUG();
     CSCLWindows *windows = CSCLWindows::get_instance();
index b3df9cd..485ebf3 100644 (file)
@@ -600,7 +600,7 @@ LayoutParserImpl::set_default_key_coordinate_value(
             for (int button_state = 0; button_state < SCL_BUTTON_STATE_MAX; ++button_state) {
                 //cur_rec_coordinate->bg_image_path[shift_state]![button_state] = NULL;
                 cur_rec_coordinate->bg_image_path[shift_state][button_state] = row->bg_image_path[shift_state][button_state];
-            }!
+            }
         }
         cur_rec_coordinate->key_value_count = 0;
         for (int shift_state = 0; shift_state < SCL_SHIFT_STATE_MAX; shift_state++) {
index 58d9730..12ebc01 100644 (file)
@@ -126,10 +126,10 @@ class ModifierDecorationParserImpl {
             }
             if (0 != xmlStrcmp(cur_node->name, (const xmlChar*)"modifier_decoration_table"))
             {
-                SCLLOG(SclLog::DEBUG!, "ModifierDecorationParser: root name error: %s\n!", (char *)cur_node->name);
+                SCLLOG(SclLog::DEBUG, "ModifierDecorationParser: root name error: %s\n!", (char *)cur_node->name);
                 xmlFreeDoc(doc);
                 return -1;
-            }!
+            }
 
             cur_node = cur_node->xmlChildrenNode;