Commit 1e23278d68a354191577ec14ef77a98c83c9e72d

Authored by Perry Werneck
1 parent d04653d3
Exists in master and in 1 other branch develop

Fixing build.

src/v3270/accessible.c
... ... @@ -40,7 +40,7 @@
40 40 #include <lib3270/log.h>
41 41 #include <v3270.h>
42 42 #include "private.h"
43   - #include "accessible.h"
  43 + #include <v3270/accessible.h>
44 44  
45 45 #ifdef GDK_WINDOWING_X11
46 46 #include <gdk/gdkx.h>
... ...
src/v3270/oia.c
... ... @@ -56,7 +56,7 @@
56 56  
57 57 #include <v3270.h>
58 58 #include "private.h"
59   - #include "accessible.h"
  59 + #include <v3270/accessible.h>
60 60  
61 61 /*--[ Prototipes ]-----------------------------------------------------------------------------------*/
62 62  
... ...
src/v3270/widget.c
... ... @@ -55,7 +55,7 @@
55 55  
56 56 #include <v3270.h>
57 57 #include "private.h"
58   - #include "accessible.h"
  58 + #include <v3270/accessible.h>
59 59 #include "marshal.h"
60 60  
61 61 #if GTK_CHECK_VERSION(3,0,0)
... ...