remove deprecated calls (been deprecated for a while now)

SVN revision: 47100
This commit is contained in:
Carsten Haitzler 2010-03-10 07:21:10 +00:00
parent 27a1fc9a9c
commit ca93701c55
5 changed files with 0 additions and 50 deletions

View File

@ -305,7 +305,6 @@ extern "C" {
EAPI Evas_Object *elm_win_inwin_add(Evas_Object *obj);
EAPI void elm_win_inwin_activate(Evas_Object *obj);
EINA_DEPRECATED EAPI void elm_win_inwin_style_set(Evas_Object *obj, const char *style);
EAPI void elm_win_inwin_content_set(Evas_Object *obj, Evas_Object *content);
/* available styles:
* default
@ -385,7 +384,6 @@ extern "C" {
EAPI void elm_button_autorepeat_set(Evas_Object *obj, Eina_Bool on);
EAPI void elm_button_autorepeat_initital_timeout_set(Evas_Object *obj, double t);
EAPI void elm_button_autorepeat_gap_timeout_set(Evas_Object *obj, double t);
EINA_DEPRECATED EAPI void elm_button_style_set(Evas_Object *obj, const char *style);
/* available styles:
* default
* anchor
@ -459,7 +457,6 @@ extern "C" {
EAPI void elm_frame_label_set(Evas_Object *obj, const char *label);
EAPI const char *elm_frame_label_get(Evas_Object *obj);
EAPI void elm_frame_content_set(Evas_Object *obj, Evas_Object *content);
EINA_DEPRECATED EAPI void elm_frame_style_set(Evas_Object *obj, const char *style);
/* available styles:
* default
* pad_small
@ -529,7 +526,6 @@ extern "C" {
EAPI void elm_hover_target_set(Evas_Object *obj, Evas_Object *target);
EAPI void elm_hover_parent_set(Evas_Object *obj, Evas_Object *parent);
EAPI void elm_hover_content_set(Evas_Object *obj, const char *swallow, Evas_Object *content);
EINA_DEPRECATED EAPI void elm_hover_style_set(Evas_Object *obj, const char *style);
EAPI const char *elm_hover_best_content_location_get(const Evas_Object *obj, Elm_Hover_Axis pref_axis);
/* available styles:
* default

View File

@ -324,22 +324,6 @@ elm_button_icon_get(Evas_Object *obj)
return wd->icon;
}
/**
* Set the button style
*
* @param obj The button object
* @param style The style for the button
*
* DEPRECATED. use elm_object_style_set() instead
*
* @ingroup Button
*/
EAPI void
elm_button_style_set(Evas_Object *obj, const char *style)
{
elm_widget_style_set(obj, style);
}
/**
* Turn on/off the autorepeat event generated when the user keeps pressing on the button
*

View File

@ -178,19 +178,3 @@ elm_frame_content_set(Evas_Object *obj, Evas_Object *content)
_sizing_eval(obj);
}
}
/**
* Set the frame style
*
* @param obj The frame object
* @param style The style will be applied in this frame
*
* DEPRECATED. use elm_object_style_set() instead
*
* @ingroup Frame
*/
EAPI void
elm_frame_style_set(Evas_Object *obj, const char *style)
{
elm_widget_style_set(obj, style);
}

View File

@ -381,13 +381,6 @@ elm_hover_content_set(Evas_Object *obj, const char *swallow, Evas_Object *conten
}
}
/** DEPRECATED. use elm_object_style_set() instead */
EAPI void
elm_hover_style_set(Evas_Object *obj, const char *style)
{
elm_widget_style_set(obj, style);
}
EAPI const char *
elm_hover_best_content_location_get(const Evas_Object *obj, Elm_Hover_Axis pref_axis)
{

View File

@ -1243,13 +1243,6 @@ elm_win_inwin_add(Evas_Object *obj)
return obj2;
}
/** DEPRECATED. use elm_object_style_set() instead */
EAPI void
elm_win_inwin_style_set(Evas_Object *obj, const char *style)
{
elm_widget_style_set(obj, style);
}
EAPI void
elm_win_inwin_activate(Evas_Object *obj)
{