From fae14613369584ba4eb168b085f3a7bcfd6edf11 Mon Sep 17 00:00:00 2001 From: Felipe Magno de Almeida Date: Tue, 29 Jul 2014 00:28:10 -0300 Subject: [PATCH] Fixed C++ box_cxx_example_02.cc example compilation The example didn't include "elm_interface_atspi_widget_action.h" and so failed on headers that used the type Elm_Atspi_Action in the function's prototypes. --- legacy/elementary/src/examples/box_cxx_example_02.cc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/legacy/elementary/src/examples/box_cxx_example_02.cc b/legacy/elementary/src/examples/box_cxx_example_02.cc index d51e4a8e7e..950adfada2 100644 --- a/legacy/elementary/src/examples/box_cxx_example_02.cc +++ b/legacy/elementary/src/examples/box_cxx_example_02.cc @@ -24,7 +24,12 @@ #include #include #include -#include + +#include "elm_interface_atspi_accessible.h" +#include "elm_interface_atspi_accessible.eo.h" + +#include "elm_interface_atspi_widget_action.h" +#include "elm_interface_atspi_widget_action.eo.h" #include #include