clean up 04/100704/1 accepted/tizen/3.0/common/20161129.103630 accepted/tizen/3.0/ivi/20161129.064309 accepted/tizen/3.0/mobile/20161129.064212 accepted/tizen/3.0/tv/20161129.064225 accepted/tizen/3.0/wearable/20161129.064243 submit/tizen_3.0/20161129.043235
authorchanywa <cbible.kim@samsung.com>
Tue, 29 Nov 2016 04:30:19 +0000 (13:30 +0900)
committerchanywa <cbible.kim@samsung.com>
Tue, 29 Nov 2016 04:30:19 +0000 (13:30 +0900)
Change-Id: I4d5b561ba72aa4e6ad1ca7bab0cc3807d48310f0

src/here_view_objects.cpp

index d42982a..9be5153 100644 (file)
@@ -345,21 +345,18 @@ here_error_e HereViewObjects::__updatePolyline(maps_view_object_h hPolyline, Geo
 
        do {
                error = maps_view_object_polyline_foreach_point(hPolyline, __foreachForCoordinates, &coordList);
-MAPS_LOGD(".");
                if (error != MAPS_ERROR_NONE) break;
                herePolyline->SetPath(coordList);
-MAPS_LOGD(".");
+
                error = maps_view_object_polyline_get_color(hPolyline, &r, &g, &b, &a);
-MAPS_LOGD(".");
                if (error != MAPS_ERROR_NONE) break;
                herePolyline->SetStrokeColor(Color(r, g, b, a));
-MAPS_LOGD(".");
+
                error = maps_view_object_polyline_get_width(hPolyline, &nThickness);
-MAPS_LOGD(".");
                if (error != MAPS_ERROR_NONE) break;
                herePolyline->SetStrokeThickness(nThickness);
        } while (0);
-MAPS_LOGD(".");
+
        return (here_error_e)ConvertToHereError(error);
 }
 
@@ -373,18 +370,15 @@ here_error_e HereViewObjects::__updatePolygon(maps_view_object_h hPolygon, GeoMa
        unsigned char r, g, b, a;
 
        do {
-MAPS_LOGD(".");
                error = maps_view_object_polygon_foreach_point(hPolygon, __foreachForCoordinates, &coordList);
-MAPS_LOGD(".");
                if (error != MAPS_ERROR_NONE) break;
                herePolygon->SetPath(coordList);
-MAPS_LOGD(".");
+
                error = maps_view_object_polygon_get_fill_color(hPolygon, &r, &g, &b, &a);
-MAPS_LOGD(".");
                if (error != MAPS_ERROR_NONE) break;
                herePolygon->SetFillColor(Color(r, g, b, a));
        } while (0);
-MAPS_LOGD(".");
+
        return (here_error_e)ConvertToHereError(error);
 }
 
@@ -480,7 +474,6 @@ bool HereViewObjects::__foreachForCoordinates(int index, maps_coordinates_h poin
 
        GeoCoordinateList *coordList = (GeoCoordinateList*)user_data;
        coordList->push_back(GeoCoordinates(lat, lng));
-       MAPS_LOGD(".");
        return true;
 }