Use quotes instead of <> to include project local header files

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@20536 57a11ea4-9604-0410-9ed3-97b8803252fd
pull/1/head
Geert Janssens 15 years ago
parent 99fa06e61b
commit b82aad54b6

@ -25,7 +25,7 @@
#include <gtk/gtk.h>
#include <glib/gi18n.h>
#include <qof.h>
#include "qof.h"
#include "Transaction.h"
#include "dialog-utils.h"

@ -1,22 +1,22 @@
%module sw_engine
%{
/* Includes the header in the wrapper code */
#include <config.h>
#include "config.h"
#include <glib.h>
#include <qof.h>
#include <Query.h>
#include <guile-mappings.h>
#include <gnc-budget.h>
#include <gnc-commodity.h>
#include <gnc-engine.h>
#include <gnc-filepath-utils.h>
#include <gnc-pricedb.h>
#include <gnc-lot.h>
#include <gnc-session-scm.h>
#include <gnc-hooks-scm.h>
#include <engine-helpers.h>
#include <SX-book.h>
#include <kvp-scm.h>
#include "qof.h"
#include "Query.h"
#include "guile-mappings.h"
#include "gnc-budget.h"
#include "gnc-commodity.h"
#include "gnc-engine.h"
#include "gnc-filepath-utils.h"
#include "gnc-pricedb.h"
#include "gnc-lot.h"
#include "gnc-session-scm.h"
#include "gnc-hooks-scm.h"
#include "engine-helpers.h"
#include "SX-book.h"
#include "kvp-scm.h"
#include "glib-helpers.h"
SCM scm_init_sw_engine_module (void);

@ -31,7 +31,7 @@
#define GNC_EVENT_H
#include <glib.h>
#include <qof.h>
#include "qof.h"
typedef struct
{

@ -1,8 +1,8 @@
#include "config.h"
#include <qof.h>
#include "qof.h"
#include <libguile.h>
#include <engine-helpers.h>
#include "engine-helpers.h"
#include "kvp-scm.h"
#include "guile-mappings.h"

@ -1,7 +1,7 @@
#ifndef KVP_SCM_H
#define KVP_SCM_H
#include <qof.h>
#include "qof.h"
#include <libguile.h>
int gnc_kvp_value_ptr_p(SCM arg);

@ -23,7 +23,7 @@
#include "config.h"
#include <glib.h>
#include <qof.h>
#include "qof.h"
extern void test_suite_qofbook();
extern void test_suite_qofinstance();

@ -19,10 +19,10 @@
* 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 *
* Boston, MA 02110-1301, USA gnu@gnu.org *
\********************************************************************/
#include <config.h>
#include "config.h"
#include <string.h>
#include <glib.h>
#include <qof.h>
#include "qof.h"
#include "qofbook-p.h"
static const gchar *suitename = "/qof/qofbook";

@ -19,9 +19,9 @@
* 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 *
* Boston, MA 02110-1301, USA gnu@gnu.org *
\********************************************************************/
#include <config.h>
#include "config.h"
#include <glib.h>
#include <qof.h>
#include "qof.h"
static const gchar *suitename = "/qof/qofinstance";
void test_suite_qofinstance ( void );

@ -1,6 +1,6 @@
/********************************************************************
* test_qofsession.c: GLib g_test test suite for qofsession. *
* Copyright 2011 John Ralls <jralls@ceridwen.us> *
* test_qofsession.c: GLib g_test test suite for qofsession. *
* Copyright 2011 John Ralls <jralls@ceridwen.us> *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License as *
@ -20,11 +20,11 @@
* Boston, MA 02110-1301, USA gnu@gnu.org *
\********************************************************************/
#include <config.h>
#include "config.h"
#include <glib.h>
#include <qof.h>
#include <qofbackend-p.h>
#include <qofsession-p.h>
#include "qof.h"
#include "qofbackend-p.h"
#include "qofsession-p.h"
static const gchar *suitename = "/qof/qofsession";
void test_suite_qofsession ( void );

Loading…
Cancel
Save