summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohan Dahlin <johan@src.gnome.org>2008-07-18 08:19:39 +0000
committerJohan Dahlin <johan@src.gnome.org>2008-07-18 08:19:39 +0000
commitb2f9b0f1f2f3b4b4f708f768616eadca00ddc974 (patch)
treeb60e84253d1dfa2564c86fc5c31aca0098c78903
parentc5e6c27c01bd1a7cca079df7d22aa95e58e7de63 (diff)
downloadpygobject-b2f9b0f1f2f3b4b4f708f768616eadca00ddc974.tar.gz
pygobject-b2f9b0f1f2f3b4b4f708f768616eadca00ddc974.tar.xz
pygobject-b2f9b0f1f2f3b4b4f708f768616eadca00ddc974.zip
Use #include <pygobject.h> instead of include "pygobject.h"
svn path=/trunk/; revision=823
-rw-r--r--gio/giomodule.c2
-rw-r--r--gio/pygio-utils.h2
-rw-r--r--gio/unixmodule.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/gio/giomodule.c b/gio/giomodule.c
index 8ee6d47..a68d8c9 100644
--- a/gio/giomodule.c
+++ b/gio/giomodule.c
@@ -23,7 +23,7 @@
# include "config.h"
#endif
#include <Python.h>
-#include "pygobject.h"
+#include <pygobject.h>
#include <gio/gio.h>
diff --git a/gio/pygio-utils.h b/gio/pygio-utils.h
index 980c52f..0ebad55 100644
--- a/gio/pygio-utils.h
+++ b/gio/pygio-utils.h
@@ -25,7 +25,7 @@
#include <Python.h>
#include <gio/gio.h>
-#include "pygobject.h"
+#include <pygobject.h>
extern PyTypeObject PyGCancellable_Type;
diff --git a/gio/unixmodule.c b/gio/unixmodule.c
index 827dca9..d2521b6 100644
--- a/gio/unixmodule.c
+++ b/gio/unixmodule.c
@@ -23,7 +23,7 @@
# include "config.h"
#endif
#include <Python.h>
-#include "pygobject.h"
+#include <pygobject.h>
#include <gio/gio.h>