From 64c08941b632004b66cd15ae8ba808a84ddc4826 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Tue, 12 Mar 2019 13:27:22 +0100 Subject: [PATCH] examples: bg_cxx: disable win.background in example Since commit ceb4c04d3b8f8eb94d63174b7b6f43641ea508a8 the parts block in efl.ui.widget is disabled which leads to compile errors of the example. --- src/examples/elementary/bg_cxx_example_01.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/examples/elementary/bg_cxx_example_01.cc b/src/examples/elementary/bg_cxx_example_01.cc index 5919d18531..1b3ae91736 100644 --- a/src/examples/elementary/bg_cxx_example_01.cc +++ b/src/examples/elementary/bg_cxx_example_01.cc @@ -11,7 +11,7 @@ elm_main (int argc EINA_UNUSED, char **argv EINA_UNUSED) win.text_set("Window Background"); win.autohide_set(true); win.size_set({320,320}); - win.background().color_set(139, 69, 19, 255); + //win.background().color_set(139, 69, 19, 255); // Clean exit elm_policy_set(ELM_POLICY_QUIT, ELM_POLICY_QUIT_LAST_WINDOW_CLOSED);