summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2018-04-27 12:02:47 +0100
committerEmmanuele Bassi <ebassi@gnome.org>2018-05-17 15:02:03 +0100
commitddcecf6fa38b409e126025b2c2b5b48808ae035e (patch)
tree9912fdc6497f84363b8619a6264a9eb88c9c8ace
parent951c82c796f1c977d8e7d0462444b463270f0b32 (diff)
downloadat-spi2-atk-ddcecf6fa38b409e126025b2c2b5b48808ae035e.tar.gz
Use a consistent include for config.h
We should always use `#include "config.h"`, as the header is local to the project, not part of the system include paths.
-rw-r--r--atk-adaptor/accessible-stateset.c6
-rw-r--r--atk-adaptor/adaptors/streamablecontent-adaptor.c7
2 files changed, 8 insertions, 5 deletions
diff --git a/atk-adaptor/accessible-stateset.c b/atk-adaptor/accessible-stateset.c
index 82820de..dc3d6ad 100644
--- a/atk-adaptor/accessible-stateset.c
+++ b/atk-adaptor/accessible-stateset.c
@@ -23,11 +23,13 @@
/* stateset.c : implements the StateSet interface */
-#include <config.h>
-#include <stdio.h>
+#include "config.h"
+
#include "accessible-stateset.h"
#include "bitarray.h"
+#include <stdio.h>
+
static AtspiStateType *accessible_state_types = NULL;
static AtkStateType *atk_state_types = NULL;
diff --git a/atk-adaptor/adaptors/streamablecontent-adaptor.c b/atk-adaptor/adaptors/streamablecontent-adaptor.c
index 8192e1a..bcb17df 100644
--- a/atk-adaptor/adaptors/streamablecontent-adaptor.c
+++ b/atk-adaptor/adaptors/streamablecontent-adaptor.c
@@ -22,13 +22,14 @@
/* streamablecontent.c : implements the StreamableContent interface */
-#include <config.h>
-#include <stdio.h>
-#include <string.h>
+#include "config.h"
#include <libspi/component.h>
#include <libspi/streamablecontent.h>
+#include <stdio.h>
+#include <string.h>
+
/* Our parent Gtk object type */
#define PARENT_TYPE SPI_TYPE_BASE