tools: Fix warnings.

This commit is contained in:
Jaehyun Cho 2016-05-16 23:38:03 +09:00
parent 29686022e0
commit 2854c5ce9e
2 changed files with 4 additions and 2 deletions

View File

@ -326,7 +326,7 @@ Evas_Object *
tools_live_view_get(void)
{
tools_data *td = g_td;
if (!td) return;
if (!td) return NULL;
return td->live_view_ly;
}
@ -335,7 +335,7 @@ Evas_Object *
tools_text_editor_get(void)
{
tools_data *td = g_td;
if (!td) return;
if (!td) return NULL;
return td->text_editor_ly;
}

View File

@ -63,3 +63,5 @@ void config_file_browser_set(Eina_Bool enabled);
Eina_Bool config_file_browser_get(void);
void config_edc_navigator_set(Eina_Bool enabled);
Eina_Bool config_edc_navigator_get(void);
Eina_Bool config_mirror_mode_get(void);
void config_mirror_mode_set(Eina_Bool mirror_mode);