elm widgets: Removed trailing whitespaces.

SVN revision: 61744
This commit is contained in:
Daniel Juyung Seo 2011-07-26 11:28:08 +00:00
parent 26ccd20393
commit ce6e815e0b
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
evas_object_resize(win, w, h);
evas_object_show(win);
elm_run();
@ -7,4 +7,4 @@
}
ELM_MAIN()

View File

@ -5,10 +5,10 @@ elm_main(int argc, char **argv)
{
Evas_Object *win, *bg;
Evas_Coord w, h;
w = atoi(argv[1]);
h = atoi(argv[2]);
win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
bg = elm_bg_add(win);
elm_win_resize_object_add(win, bg);