remove elm_map_marker_class_style_set
authorjypark <jypark@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Wed, 14 Mar 2012 07:00:43 +0000 (07:00 +0000)
committerjypark <jypark@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Wed, 14 Mar 2012 07:00:43 +0000 (07:00 +0000)
elm_map_marker_class_icon_cb_set
elm_map_marker_class_get_cb_set
elm_map_marker_class_del_cb_set

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@69319 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/elm_map.c

index 8c00dbb..ee5fc09 100644 (file)
@@ -5967,54 +5967,6 @@ elm_map_marker_class_new(Evas_Object *obj)
 }
 
 EAPI void
-elm_map_marker_class_style_set(Elm_Map_Marker_Class *clas, const char *style)
-{
-#ifdef HAVE_ELEMENTARY_ECORE_CON
-   EINA_SAFETY_ON_NULL_RETURN(clas);
-   eina_stringshare_replace(&clas->style, style);
-#else
-   (void) clas;
-   (void) style;
-#endif
-}
-
-EAPI void
-elm_map_marker_class_icon_cb_set(Elm_Map_Marker_Class *clas, Elm_Map_Marker_Icon_Get_Func icon_get)
-{
-#ifdef HAVE_ELEMENTARY_ECORE_CON
-   EINA_SAFETY_ON_NULL_RETURN(clas);
-   clas->func.icon_get = icon_get;
-#else
-   (void) clas;
-   (void) icon_get;
-#endif
-}
-
-EAPI void
-elm_map_marker_class_get_cb_set(Elm_Map_Marker_Class *clas, Elm_Map_Marker_Get_Func get)
-{
-#ifdef HAVE_ELEMENTARY_ECORE_CON
-   EINA_SAFETY_ON_NULL_RETURN(clas);
-   clas->func.get = get;
-#else
-   (void) clas;
-   (void) get;
-#endif
-}
-
-EAPI void
-elm_map_marker_class_del_cb_set(Elm_Map_Marker_Class *clas, Elm_Map_Marker_Del_Func del)
-{
-#ifdef HAVE_ELEMENTARY_ECORE_CON
-   EINA_SAFETY_ON_NULL_RETURN(clas);
-   clas->func.del = del;
-#else
-   (void) clas;
-   (void) del;
-#endif
-}
-
-EAPI void
 elm_map_route_remove(Elm_Map_Route *route)
 {
    elm_map_route_del(route);