use evas_coord too

SVN revision: 9933
This commit is contained in:
Carsten Haitzler 2004-04-27 10:34:47 +00:00
parent 35018ca1e2
commit 0f6e7ba387
3 changed files with 7 additions and 6 deletions

View File

@ -69,7 +69,7 @@ app_finish(void)
static void
app_resize(Ecore_Evas *ee)
{
double w, h;
Evas_Coord w, h;
evas_output_viewport_get(evas, NULL, NULL, &w, &h);
bg_resize(w, h);

View File

@ -177,8 +177,9 @@ static int
bg_animate_obj_timer(void *data)
{
Evas_Object *o;
double x, y, sx, sy, v;
double w, h;
Evas_Coord x, y, sx, sy;
Evas_Coord w, h;
double v;
int ow, oh;
double t;
int l, m, n;

View File

@ -594,9 +594,9 @@ int
obj_timer(void *data)
{
Evas_Object *o;
double x, y;
double w, h;
double ow, oh;
Evas_Coord x, y;
Evas_Coord w, h;
Evas_Coord ow, oh;
double t;
int m, n;
int i;