diff options
author | Daniel Juyung Seo <seojuyung2@gmail.com> | 2011-07-25 14:22:19 +0000 |
---|---|---|
committer | Daniel Juyung Seo <seojuyung2@gmail.com> | 2011-07-25 14:22:19 +0000 |
commit | d473e343eb4341f72a8778d062b56bc450348561 (patch) | |
tree | c13febf7fd258f3e19c496fb871f7543399f63e1 /legacy/elementary/src/bin/test_cursor.c | |
parent | 38b40990e533ae273d1e3fc2b12492c69624b10f (diff) |
elm test: Refactoring. Changed 1 to EINA_TRUE for Eina_Bool parameter of elm_win_autodel_set() API.
SVN revision: 61695
Diffstat (limited to 'legacy/elementary/src/bin/test_cursor.c')
-rw-r--r-- | legacy/elementary/src/bin/test_cursor.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/legacy/elementary/src/bin/test_cursor.c b/legacy/elementary/src/bin/test_cursor.c index 96d950f..575fe62 100644 --- a/legacy/elementary/src/bin/test_cursor.c +++ b/legacy/elementary/src/bin/test_cursor.c | |||
@@ -101,7 +101,7 @@ test_cursor(void *data __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info | |||
101 | 101 | ||
102 | win = elm_win_add(NULL, "cursor", ELM_WIN_BASIC); | 102 | win = elm_win_add(NULL, "cursor", ELM_WIN_BASIC); |
103 | elm_win_title_set(win, "Cursor"); | 103 | elm_win_title_set(win, "Cursor"); |
104 | elm_win_autodel_set(win, 1); | 104 | elm_win_autodel_set(win, EINA_TRUE); |
105 | 105 | ||
106 | bg = elm_bg_add(win); | 106 | bg = elm_bg_add(win); |
107 | elm_win_resize_object_add(win, bg); | 107 | elm_win_resize_object_add(win, bg); |
@@ -185,7 +185,7 @@ test_cursor2(void *data __UNUSED__, Evas_Object *obj __UNUSED__, void *event_inf | |||
185 | 185 | ||
186 | win = elm_win_add(NULL, "cursor2", ELM_WIN_BASIC); | 186 | win = elm_win_add(NULL, "cursor2", ELM_WIN_BASIC); |
187 | elm_win_title_set(win, "Cursor 2"); | 187 | elm_win_title_set(win, "Cursor 2"); |
188 | elm_win_autodel_set(win, 1); | 188 | elm_win_autodel_set(win, EINA_TRUE); |
189 | 189 | ||
190 | bg = elm_bg_add(win); | 190 | bg = elm_bg_add(win); |
191 | elm_win_resize_object_add(win, bg); | 191 | elm_win_resize_object_add(win, bg); |
@@ -293,7 +293,7 @@ test_cursor3(void *data __UNUSED__, Evas_Object *obj __UNUSED__, void *event_inf | |||
293 | 293 | ||
294 | win = elm_win_add(NULL, "cursor3", ELM_WIN_BASIC); | 294 | win = elm_win_add(NULL, "cursor3", ELM_WIN_BASIC); |
295 | elm_win_title_set(win, "Cursor 3"); | 295 | elm_win_title_set(win, "Cursor 3"); |
296 | elm_win_autodel_set(win, 1); | 296 | elm_win_autodel_set(win, EINA_TRUE); |
297 | 297 | ||
298 | snprintf(buf, sizeof(buf), "%s/objects/cursors.edj", PACKAGE_DATA_DIR); | 298 | snprintf(buf, sizeof(buf), "%s/objects/cursors.edj", PACKAGE_DATA_DIR); |
299 | elm_theme_extension_add(NULL, buf); | 299 | elm_theme_extension_add(NULL, buf); |