felipealmeida pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=ee3f0b730ca34aef87915594917adec8fed2f4c2
commit ee3f0b730ca34aef87915594917adec8fed2f4c2 Author: Felipe Magno de Almeida <[email protected]> Date: Tue Jul 29 00:28:10 2014 -0300 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. --- src/examples/box_cxx_example_02.cc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/examples/box_cxx_example_02.cc b/src/examples/box_cxx_example_02.cc index d51e4a8..950adfa 100644 --- a/src/examples/box_cxx_example_02.cc +++ b/src/examples/box_cxx_example_02.cc @@ -24,7 +24,12 @@ #include <Evas.h> #include <Elementary.h> #include <elm_widget.h> -#include <elm_interface_atspi_accessible.h> + +#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 <elm_win.eo.hh> #include <elm_box.eo.hh> --
