Remove unused routine. PG compiles again.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@8583 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
David Hampton 2003-06-12 00:46:26 +00:00
parent 914af285c4
commit 55f6d622a6
2 changed files with 0 additions and 18 deletions

View File

@ -197,23 +197,6 @@ pgendSplitLookup (PGBackend *be, const GUID *split_guid)
return NULL;
}
GNCPrice *
pgendPriceLookup (PGBackend *be, const GUID *price_guid)
{
GList *node;
GNCPrice * price = NULL;
ENTER("guid = %s", guid_to_string(price_guid));
for (node=be->blist; node; node=node->next)
{
GNCBook *book = node->data;
price = gnc_price_lookup (price_guid, book);
if (price) { LEAVE("price = %p", price); return price; }
}
return NULL;
}
GNCIdType
pgendGUIDType (PGBackend *be, const GUID *guid)
{

View File

@ -124,7 +124,6 @@ Backend * pgendNew (void);
Account * pgendAccountLookup (PGBackend *be, const GUID *acct_guid);
Transaction * pgendTransLookup (PGBackend *be, const GUID *txn_guid);
Split * pgendSplitLookup (PGBackend *be, const GUID *split_guid);
GNCPrice * pgendPriceLookup (PGBackend *be, const GUID *price_guid);
GNCIdType pgendGUIDType (PGBackend *be, const GUID *guid);
void pgendDisable (PGBackend *be);