More bit char return value bugs fixed

SVN revision: 8579
This commit is contained in:
xcomputerman 2004-01-20 03:26:05 +00:00 committed by xcomputerman
parent 12027a59db
commit 3318459b23
1 changed files with 2 additions and 2 deletions

View File

@ -600,7 +600,7 @@ ecore_evas_shaped_get(Ecore_Evas *ee)
"ecore_evas_shaped_get");
return 0;
}
return ee->shaped;
return ee->shaped ? 1:0;
}
/**
@ -660,7 +660,7 @@ ecore_evas_visibility_get(Ecore_Evas *ee)
"ecore_evas_visibility_get");
return 0;
}
return ee->visible;
return ee->visible ? 1:0;
}
/**