From: WooHyun Jung Date: Tue, 25 Jan 2011 06:21:29 +0000 (+0900) Subject: [entry] Deprecated API - maximum_bytes_set funtion is deleted X-Git-Tag: REL_I9200_20110603-1~439^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d7e3bf18e39c7e7e59ca956e81f3c2a000d776b0;p=framework%2Fuifw%2Felementary.git [entry] Deprecated API - maximum_bytes_set funtion is deleted --- diff --git a/src/lib/elm_entry.c b/src/lib/elm_entry.c index 4963518..c8daad4 100644 --- a/src/lib/elm_entry.c +++ b/src/lib/elm_entry.c @@ -2427,24 +2427,6 @@ elm_entry_single_line_get(const Evas_Object *obj) } /** - * This set's the maximum bytes that can be added in entry. - * - * @param obj The entry object - * @param max_no_of_bytes Maximum number of bytes entry can have. - * - * @ingroup Entry - */ -EAPI void -elm_entry_maximum_bytes_set(Evas_Object *obj, int max_no_of_bytes) -{ - Widget_Data *wd = elm_widget_data_get(obj); - - wd->max_no_of_bytes = max_no_of_bytes; - edje_object_part_textinput_callback_set(wd->ent, "elm.text", _textinput_control_function,obj); -} - - -/** * This sets the entry object to password mode. All text entered * and/or displayed within the widget will be replaced with asterisks (*). *