diff options
author | Johan Dahlin <jdahlin@async.com.br> | 2008-06-22 14:28:52 +0000 |
---|---|---|
committer | Johan Dahlin <johan@src.gnome.org> | 2008-06-22 14:28:52 +0000 |
commit | d97cdbdf53832729141b3b66de00f770b44e3390 (patch) | |
tree | a7d06aa5d8a07ed5e8f38497777dca835bd65ede /examples | |
parent | 8875b3a9354b2dcb794160e1d7025ccc74929c3f (diff) | |
download | gtk+-d97cdbdf53832729141b3b66de00f770b44e3390.tar.gz |
Include "config.h" instead of <config.h> Command used: find -name
2008-06-21 Johan Dahlin <jdahlin@async.com.br>
* *.[ch]: Include "config.h" instead of <config.h>
Command used:
find -name \*.[ch]|xargs perl -p -i -e 's/^#include <config.h>/#include "config.h"/g'
Rubberstamped by Mitch and Tim
svn path=/trunk/; revision=20669
Diffstat (limited to 'examples')
-rw-r--r-- | examples/clist/clist.c | 2 | ||||
-rw-r--r-- | examples/list/list.c | 2 | ||||
-rw-r--r-- | examples/pixmap/pixmap.c | 2 | ||||
-rw-r--r-- | examples/text/text.c | 2 | ||||
-rw-r--r-- | examples/tree/tree.c | 2 | ||||
-rw-r--r-- | examples/wheelbarrow/wheelbarrow.c | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/examples/clist/clist.c b/examples/clist/clist.c index 6c52751c1a..64903b4a12 100644 --- a/examples/clist/clist.c +++ b/examples/clist/clist.c @@ -1,5 +1,5 @@ -#include <config.h> +#include "config.h" #include <gtk/gtk.h> /* User clicked the "Add List" button. */ diff --git a/examples/list/list.c b/examples/list/list.c index 066d2cabab..d0d436a386 100644 --- a/examples/list/list.c +++ b/examples/list/list.c @@ -1,5 +1,5 @@ -#include <config.h> +#include "config.h" #include <gtk/gtk.h> #include <stdio.h> diff --git a/examples/pixmap/pixmap.c b/examples/pixmap/pixmap.c index 8339c73206..6c3e95934a 100644 --- a/examples/pixmap/pixmap.c +++ b/examples/pixmap/pixmap.c @@ -1,5 +1,5 @@ -#include <config.h> +#include "config.h" #include <gtk/gtk.h> diff --git a/examples/text/text.c b/examples/text/text.c index 319bedfaa4..c3439cbddf 100644 --- a/examples/text/text.c +++ b/examples/text/text.c @@ -1,6 +1,6 @@ #define GTK_ENABLE_BROKEN -#include <config.h> +#include "config.h" #include <stdio.h> #include <gtk/gtk.h> diff --git a/examples/tree/tree.c b/examples/tree/tree.c index ce2f45241b..9c3962e6b2 100644 --- a/examples/tree/tree.c +++ b/examples/tree/tree.c @@ -1,6 +1,6 @@ #define GTK_ENABLE_BROKEN -#include <config.h> +#include "config.h" #include <gtk/gtk.h> /* for all the GtkItem:: and GtkTreeItem:: signals */ diff --git a/examples/wheelbarrow/wheelbarrow.c b/examples/wheelbarrow/wheelbarrow.c index 33da0a5b6a..0976076dbe 100644 --- a/examples/wheelbarrow/wheelbarrow.c +++ b/examples/wheelbarrow/wheelbarrow.c @@ -1,5 +1,5 @@ -#include <config.h> +#include "config.h" #include <gtk/gtk.h> /* XPM */ |