aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/elementary/doc/widgets/widget_preview_bubble2.c
diff options
context:
space:
mode:
authorDavid Walter Seikel2013-01-13 17:29:19 +1000
committerDavid Walter Seikel2013-01-13 17:29:19 +1000
commit07274513e984f0b5544586c74508ccd16e7dcafa (patch)
treeb32ff2a9136fbc1a4a6a0ed1e4d79cde0f5f16d9 /libraries/elementary/doc/widgets/widget_preview_bubble2.c
parentAdded Irrlicht 1.8, but without all the Windows binaries. (diff)
downloadSledjHamr-07274513e984f0b5544586c74508ccd16e7dcafa.zip
SledjHamr-07274513e984f0b5544586c74508ccd16e7dcafa.tar.gz
SledjHamr-07274513e984f0b5544586c74508ccd16e7dcafa.tar.bz2
SledjHamr-07274513e984f0b5544586c74508ccd16e7dcafa.tar.xz
Remove EFL, since it's been released now.
Diffstat (limited to 'libraries/elementary/doc/widgets/widget_preview_bubble2.c')
-rw-r--r--libraries/elementary/doc/widgets/widget_preview_bubble2.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/libraries/elementary/doc/widgets/widget_preview_bubble2.c b/libraries/elementary/doc/widgets/widget_preview_bubble2.c
deleted file mode 100644
index c2272ea..0000000
--- a/libraries/elementary/doc/widgets/widget_preview_bubble2.c
+++ /dev/null
@@ -1,15 +0,0 @@
1#include "widget_preview_tmpl_head.c"
2
3Evas_Object *o = elm_bubble_add(win);
4evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
5elm_win_resize_object_add(win, o);
6evas_object_show(o);
7
8elm_object_text_set(o, "Bubble");
9
10Evas_Object *o2 = elm_icon_add(win);
11elm_icon_standard_set(o2, "home");
12elm_object_part_content_set(o, "icon", o2);
13evas_object_show(o2);
14
15#include "widget_preview_tmpl_foot.c"