From: Jihoon Kim Date: Mon, 18 Jan 2016 04:07:52 +0000 (+0900) Subject: Fix build error X-Git-Tag: accepted/tizen/mobile/20160118.084230~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F09%2F57209%2F1;p=platform%2Fcore%2Fuifw%2Flibscl-ui.git Fix build error Change-Id: I480b6bfe91680090a87f0288d3af6520d26ce4a9 --- diff --git a/scl/gwes/efl/sclanimator-efl.cpp b/scl/gwes/efl/sclanimator-efl.cpp index 9f46731..e969c85 100644 --- a/scl/gwes/efl/sclanimator-efl.cpp +++ b/scl/gwes/efl/sclanimator-efl.cpp @@ -84,7 +84,7 @@ CSCLAnimatorImplEfl::animator_timer(SclAnimationState *state) Evas_Object *window_object = static_cast(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 +} diff --git a/scl/sclcontext.cpp b/scl/sclcontext.cpp index 050517a..6c28833 100644 --- a/scl/sclcontext.cpp +++ b/scl/sclcontext.cpp @@ -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(); diff --git a/xmlresource/layout_parser.cpp b/xmlresource/layout_parser.cpp index b3df9cd..485ebf3 100644 --- a/xmlresource/layout_parser.cpp +++ b/xmlresource/layout_parser.cpp @@ -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++) { diff --git a/xmlresource/modifier_decoration_parser.cpp b/xmlresource/modifier_decoration_parser.cpp index 58d9730..12ebc01 100644 --- a/xmlresource/modifier_decoration_parser.cpp +++ b/xmlresource/modifier_decoration_parser.cpp @@ -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;