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.
This commit is contained in:
Felipe Magno de Almeida 2014-07-29 00:28:10 -03:00
parent 09b9ef0bc0
commit fae1461336
1 changed files with 6 additions and 1 deletions

View File

@ -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>