fix warnings, adjust license to BSD in -L output.

SVN revision: 72407
This commit is contained in:
Carsten Haitzler 2012-06-18 14:22:15 +00:00
parent a36cce4ef6
commit 561e86c6c8
2 changed files with 3 additions and 3 deletions

View File

@ -144,7 +144,7 @@ static const Ecore_Getopt options = {
"%prog [options]",
PACKAGE_VERSION,
"(C) 2012 Carsten Haitzler",
"GPL-2",
"BSD 2-Clause",
"Terminal emulator written with Enlightenment Foundation Libraries.",
EINA_TRUE,
{

View File

@ -69,7 +69,7 @@ _smart_apply(Evas_Object *obj)
{
Termio *sd = evas_object_smart_data_get(obj);
Evas_Coord ox, oy, ow, oh;
int j, x, y, w, ch1, ch2;
int j, x, y, w, ch1 = 0, ch2 = 0;
if (!sd) return;
evas_object_geometry_get(obj, &ox, &oy, &ow, &oh);
@ -330,7 +330,7 @@ _smart_cb_change(void *data)
Evas_Object *obj = data;
Termio *sd;
sd = evas_object_smart_data_get(obj);
if (!sd) return;
if (!sd) return EINA_FALSE;
sd->anim = NULL;
_smart_apply(obj);
evas_object_smart_callback_call(obj, "changed", NULL);