diff --git a/src/engine/gw-engine-spec.scm b/src/engine/gw-engine-spec.scm index da378f3476..5f3a99bfad 100644 --- a/src/engine/gw-engine-spec.scm +++ b/src/engine/gw-engine-spec.scm @@ -97,8 +97,6 @@ (gw:wrap-as-wct ws ' "QofIdType" "QofIdTypeConst") (gw:wrap-as-wct ws ' "Account*" "const Account*") (gw:wrap-as-wct ws ' "Account**" "const Account**") -(gw:wrap-as-wct ws ' "InvAcct*" "const InvAcct*") -(gw:wrap-as-wct ws ' "AccInfo*" "const AccInfo*") (gw:wrap-as-wct ws ' "AccountGroup*" "const AccountGroup*") (gw:wrap-as-wct ws ' "QofBook*" "const QofBook*") (gw:wrap-as-wct ws ' "GNCLot*" "const GNCLot*") diff --git a/src/gnome-search/dialog-search.h b/src/gnome-search/dialog-search.h index dd2a63c657..584f45e5bc 100644 --- a/src/gnome-search/dialog-search.h +++ b/src/gnome-search/dialog-search.h @@ -24,6 +24,8 @@ #ifndef _GNC_DIALOG_SEARCH_H #define _GNC_DIALOG_SEARCH_H +#include + #include "GNCId.h" #include "QueryNew.h" diff --git a/src/report/report-gnome/dialog-column-view.h b/src/report/report-gnome/dialog-column-view.h index c9a859075c..c6e79af006 100644 --- a/src/report/report-gnome/dialog-column-view.h +++ b/src/report/report-gnome/dialog-column-view.h @@ -20,8 +20,14 @@ * Boston, MA 02111-1307, USA gnu@gnu.org * ********************************************************************/ +#ifndef GNC_DIALOG_COLUMN_VIEW_H +#define GNC_DIALOG_COLUMN_VIEW_H + #include +#include typedef struct gncp_column_view_edit gnc_column_view_edit; GtkWidget * gnc_column_view_edit_options(SCM options, SCM view); + +#endif