Skip to content

Commit

Permalink
Fix the typo in function name "new_query_for_addresss"
Browse files Browse the repository at this point in the history
  • Loading branch information
richardcohen committed May 13, 2023
1 parent a63247b commit 4df662a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libgnucash/app-utils/gnc-addr-quickfill.c
Expand Up @@ -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
* 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);
g_assert(book);
Expand All @@ -148,7 +148,7 @@ static QofQuery *new_query_for_addresss(QofBook *book)
static AddressQF* build_shared_quickfill (QofBook *book, const char * key)
{
AddressQF *result;
QofQuery *query = new_query_for_addresss(book);
QofQuery *query = new_query_for_address(book);
GList *entries = qof_query_run(query);

/* g_warning("Found %d GncAddress items", g_list_length (entries)); */
Expand Down

0 comments on commit 4df662a

Please sign in to comment.