EFL migration revision 67547
[framework/uifw/elementary.git] / src / bin / test_inwin.c
index 926f5b2..92b1ace 100644 (file)
@@ -10,7 +10,7 @@ test_inwin(void *data __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info
 
    win = elm_win_add(NULL, "inwin", ELM_WIN_BASIC);
    elm_win_title_set(win, "Inwin");
-   elm_win_autodel_set(win, 1);
+   elm_win_autodel_set(win, EINA_TRUE);
 
    bg = elm_bg_add(win);
    elm_win_resize_object_add(win, bg);
@@ -22,10 +22,10 @@ test_inwin(void *data __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info
 
    lb = elm_label_add(win);
    elm_object_text_set(lb,
-                      "This is an \"inwin\" - a window in a<br>"
-                      "window. This is handy for quick popups<br>"
-                      "you want centered, taking over the window<br>"
-                      "until dismissed somehow. Unlike hovers they<br>"
+                      "This is an \"inwin\" - a window in a<br/>"
+                      "window. This is handy for quick popups<br/>"
+                      "you want centered, taking over the window<br/>"
+                      "until dismissed somehow. Unlike hovers they<br/>"
                       "don't hover over their target.");
    elm_win_inwin_content_set(inwin, lb);
    evas_object_show(lb);
@@ -41,7 +41,7 @@ test_inwin2(void *data __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info
 
    win = elm_win_add(NULL, "inwin2", ELM_WIN_BASIC);
    elm_win_title_set(win, "Inwin 2");
-   elm_win_autodel_set(win, 1);
+   elm_win_autodel_set(win, EINA_TRUE);
 
    bg = elm_bg_add(win);
    elm_win_resize_object_add(win, bg);
@@ -54,13 +54,13 @@ test_inwin2(void *data __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info
 
    lb = elm_label_add(win);
    elm_object_text_set(lb,
-                      "This is an \"inwin\" - a window in a<br>"
-                      "window. This is handy for quick popups<br>"
-                      "you want centered, taking over the window<br>"
-                      "until dismissed somehow. Unlike hovers they<br>"
-                      "don't hover over their target.<br>"
-                      "<br>"
-                      "This inwin style compacts itself vertically<br>"
+                      "This is an \"inwin\" - a window in a<br/>"
+                      "window. This is handy for quick popups<br/>"
+                      "you want centered, taking over the window<br/>"
+                      "until dismissed somehow. Unlike hovers they<br/>"
+                      "don't hover over their target.<br/>"
+                      "<br/>"
+                      "This inwin style compacts itself vertically<br/>"
                       "to the size of its contents minimum size.");
    elm_win_inwin_content_set(inwin, lb);
    evas_object_show(lb);