mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Fix the typo in function name "new_query_for_addresss"
This commit is contained in:
@@ -134,7 +134,7 @@ static void address_cb(gpointer data, gpointer user_data)
|
|||||||
|
|
||||||
/** Creates a new query that searches for all GncAddress items in the
|
/** Creates a new query that searches for all GncAddress items in the
|
||||||
* current book. */
|
* current book. */
|
||||||
static QofQuery *new_query_for_addresss(QofBook *book)
|
static QofQuery *new_query_for_address(QofBook *book)
|
||||||
{
|
{
|
||||||
QofQuery *query = qof_query_create_for (GNC_ID_ADDRESS);
|
QofQuery *query = qof_query_create_for (GNC_ID_ADDRESS);
|
||||||
g_assert(book);
|
g_assert(book);
|
||||||
@@ -148,7 +148,7 @@ static QofQuery *new_query_for_addresss(QofBook *book)
|
|||||||
static AddressQF* build_shared_quickfill (QofBook *book, const char * key)
|
static AddressQF* build_shared_quickfill (QofBook *book, const char * key)
|
||||||
{
|
{
|
||||||
AddressQF *result;
|
AddressQF *result;
|
||||||
QofQuery *query = new_query_for_addresss(book);
|
QofQuery *query = new_query_for_address(book);
|
||||||
GList *entries = qof_query_run(query);
|
GList *entries = qof_query_run(query);
|
||||||
|
|
||||||
/* g_warning("Found %d GncAddress items", g_list_length (entries)); */
|
/* g_warning("Found %d GncAddress items", g_list_length (entries)); */
|
||||||
|
|||||||
Reference in New Issue
Block a user