summaryrefslogtreecommitdiff
path: root/clients/editor.c
diff options
context:
space:
mode:
authorJason Ekstrand <jason@jlekstrand.net>2013-10-13 19:08:38 -0500
committerKristian Høgsberg <krh@bitplanet.net>2013-10-13 22:12:16 -0700
commitee7fefcffc73fbf2e5fbe2bcb08a3918f202144b (patch)
tree744dc1c984fda76ae225ce5eb2b7d12f6fa60b7b /clients/editor.c
parentbcfd07b70a96bb21d9b8e5251d6551ef6ad8d1ad (diff)
downloadweston-ee7fefcffc73fbf2e5fbe2bcb08a3918f202144b.tar.gz
Rename frame_create and frame_set_child_size with a window_ prefix
This is to avoid a collision with an actual frame structure. Signed-off-by: Jason Ekstrand <jason@jlekstrand.net>
Diffstat (limited to 'clients/editor.c')
-rw-r--r--clients/editor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/clients/editor.c b/clients/editor.c
index 12650f32..6e38426e 100644
--- a/clients/editor.c
+++ b/clients/editor.c
@@ -1221,7 +1221,7 @@ main(int argc, char *argv[])
display_set_global_handler(editor.display, global_handler);
editor.window = window_create(editor.display);
- editor.widget = frame_create(editor.window, &editor);
+ editor.widget = window_frame_create(editor.window, &editor);
editor.entry = text_entry_create(&editor, "Entry");
editor.entry->click_to_show = click_to_show;