evas: Rename evas_font_zero_presure()

There's an obvious typo in the function name, so appease my OCD and
rename it.

Patch by: Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>



SVN revision: 83604
This commit is contained in:
Raphael Kubo da Costa 2013-02-04 15:33:38 +00:00 committed by Bruno Dilly
parent ad5355a307
commit b236ac69bd
3 changed files with 3 additions and 3 deletions

View File

@ -152,7 +152,7 @@ evas_fonts_zero_free(Evas *eo_evas)
}
void
evas_fonts_zero_presure(Evas *eo_evas)
evas_fonts_zero_pressure(Evas *eo_evas)
{
Fndat *fd;
Evas_Public_Data *evas = eo_data_get(eo_evas, EVAS_CLASS);

View File

@ -2159,7 +2159,7 @@ _canvas_render_idle_flush(Eo *eo_e, void *_pd, va_list *list EINA_UNUSED)
evas_render_rendering_wait(e);
evas_fonts_zero_presure(eo_e);
evas_fonts_zero_pressure(eo_e);
if ((e->engine.func) && (e->engine.func->output_idle_flush) &&
(e->engine.data.output))

View File

@ -1049,7 +1049,7 @@ Eina_List *evas_font_dir_available_list(const Evas* evas);
void evas_font_dir_available_list_free(Eina_List *available);
void evas_font_free(Evas *evas, void *font);
void evas_fonts_zero_free(Evas *evas);
void evas_fonts_zero_presure(Evas *evas);
void evas_fonts_zero_pressure(Evas *evas);
void evas_font_name_parse(Evas_Font_Description *fdesc, const char *name);
int evas_font_style_find(const char *start, const char *end, Evas_Font_Style style);
Evas_Font_Description *evas_font_desc_new(void);