diff options
author | Marco Peereboom <marco@conformal.com> | 2012-01-23 15:47:46 -0600 |
---|---|---|
committer | Marco Peereboom <marco@conformal.com> | 2012-01-23 15:47:46 -0600 |
commit | ee4e2f2e4beacb8bd4257acaeaffa942875609e3 (patch) | |
tree | 0cb313da1508b4d05a557c05a3c2c54a9825501a | |
parent | c1264a60aaf38e3c0304c03f8d94f3b8a01b79b0 (diff) | |
download | xombrero-ee4e2f2e4beacb8bd4257acaeaffa942875609e3.tar.gz |
include using <> instead of ; this will have fallout
-rw-r--r-- | about.c | 2 | ||||
-rw-r--r-- | completion.c | 2 | ||||
-rw-r--r-- | cookie.c | 2 | ||||
-rw-r--r-- | externaleditor.c | 2 | ||||
-rw-r--r-- | inputfocus.c | 2 | ||||
-rw-r--r-- | inspector.c | 2 | ||||
-rw-r--r-- | marco.c | 2 | ||||
-rw-r--r-- | tldlist.c | 2 | ||||
-rw-r--r-- | xxxterm.c | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/about.c b/about.c index 7b7696b..4470023 100644 --- a/about.c +++ b/about.c @@ -19,7 +19,7 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#include "xxxterm.h" +#include <xxxterm.h> /* * xxxterm "protocol" (xtp) diff --git a/completion.c b/completion.c index 09f3b6c..0042860 100644 --- a/completion.c +++ b/completion.c @@ -19,7 +19,7 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#include "xxxterm.h" +#include <xxxterm.h> gboolean completion_select_cb(GtkEntryCompletion *widget, GtkTreeModel *model, diff --git a/cookie.c b/cookie.c index 2e3061e..10d71db 100644 --- a/cookie.c +++ b/cookie.c @@ -14,7 +14,7 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#include "xxxterm.h" +#include <xxxterm.h> #define XT_REJECT_FILE ("rejected.txt") #define XT_COOKIE_FILE ("cookies.txt") diff --git a/externaleditor.c b/externaleditor.c index 5c89173..407dd27 100644 --- a/externaleditor.c +++ b/externaleditor.c @@ -14,7 +14,7 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#include "xxxterm.h" +#include <xxxterm.h> #if !defined(XT_SIGNALS_DISABLE) && (WEBKIT_CHECK_VERSION(1, 5, 0)) /* we got the DOM API we need */ diff --git a/inputfocus.c b/inputfocus.c index fd26e41..faebb3f 100644 --- a/inputfocus.c +++ b/inputfocus.c @@ -14,7 +14,7 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#include "xxxterm.h" +#include <xxxterm.h> #if WEBKIT_CHECK_VERSION(1, 5, 0) /* we got the DOM API we need */ diff --git a/inspector.c b/inspector.c index 6b8f114..95db236 100644 --- a/inspector.c +++ b/inspector.c @@ -15,7 +15,7 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#include "xxxterm.h" +#include <xxxterm.h> gboolean inspector_attach_window(WebKitWebInspector *inspector, struct tab *t) diff --git a/marco.c b/marco.c index d64c7cb..14cee0e 100644 --- a/marco.c +++ b/marco.c @@ -15,7 +15,7 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#include "xxxterm.h" +#include <xxxterm.h> static const char *message[] = { "I fully support your right to put restrictions on how I can modify" diff --git a/tldlist.c b/tldlist.c index 5144ba9..5b60995 100644 --- a/tldlist.c +++ b/tldlist.c @@ -14,7 +14,7 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#include "xxxterm.h" +#include <xxxterm.h> #define TLD_TREE_END_NODE 1 #define TLD_TREE_EXCEPTION 2 diff --git a/xxxterm.c b/xxxterm.c index 818f3a2..2a7270f 100644 --- a/xxxterm.c +++ b/xxxterm.c @@ -19,7 +19,7 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#include "xxxterm.h" +#include <xxxterm.h> #include "version.h" char *version = XXXTERM_VERSION; |