Update for recent reorg changes.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@8582 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
David Hampton 2003-06-12 00:45:50 +00:00
parent 9b1f87a39d
commit 914af285c4
5 changed files with 6 additions and 2 deletions

View File

@ -41,6 +41,7 @@
#include "gnc-commodity.h"
#include "gnc-engine-util.h"
#include "gnc-event.h"
#include "gnc-pricedb.h"
#include "guid.h"
#include "account.h"

View File

@ -36,6 +36,7 @@
#include "book.h"
#include "gnc-book-p.h"
#include "gnc-engine-util.h"
#include "gnc-pricedb.h"
#include "guid.h"
#include "kvp-sql.h"
#include "PostgresBackend.h"

View File

@ -353,9 +353,10 @@ pgendGetAllPricesInBook (PGBackend *be, GNCBook *book)
/* ============================================================= */
void
pgendPriceFind (Backend *bend, GNCPriceLookup *look)
pgendPriceFind (Backend *bend, gpointer olook)
{
PGBackend *be = (PGBackend *)bend;
GNCPriceLookup *look = (GNCPriceLookup *)olook;
const char * commodity_str;
const char * currency_str;
sqlEscape *escape;

View File

@ -31,7 +31,7 @@ void pgendGetCommodity (PGBackend *be, const char * unique_name);
void pgendStorePriceDB (PGBackend *be, GNCBook *book);
void pgendStorePriceDBNoLock (PGBackend *be, GNCBook *book);
void pgendGetAllPricesInBook (PGBackend *be, GNCBook *);
void pgendPriceFind (Backend *bend, GNCPriceLookup *look);
void pgendPriceFind (Backend *bend, gpointer olook);
void pgend_price_begin_edit (Backend * bend, GNCPrice *pr);

View File

@ -39,6 +39,7 @@
#include "gnc-commodity.h"
#include "gnc-engine-util.h"
#include "gnc-event.h"
#include "gnc-pricedb.h"
#include "guid.h"
#include "Transaction.h"
#include "TransactionP.h"