[price-quotes] Rename Gnucash::quotes_info to Gnucash::check_finance_quote.

This commit is contained in:
John Ralls 2022-10-13 12:37:54 -07:00
parent 70c9d4c9e3
commit 90bcde2cfb
3 changed files with 3 additions and 3 deletions

View File

@ -137,7 +137,7 @@ Gnucash::GnucashCli::start ([[maybe_unused]] int argc, [[maybe_unused]] char **a
{
if (m_quotes_cmd.front() == "info")
{
return Gnucash::quotes_info ();
return Gnucash::check_finance_quote ();
}
else if (m_quotes_cmd.front() == "get")
{

View File

@ -300,7 +300,7 @@ scm_report_list ([[maybe_unused]] void *data,
}
int
Gnucash::quotes_info (void)
Gnucash::check_finance_quote (void)
{
gnc_prefs_init ();
try

View File

@ -34,7 +34,7 @@ using StrVec = std::vector<std::string>;
namespace Gnucash {
int quotes_info (void);
int check_finance_quote (void);
int add_quotes (const bo_str& uri);
int report_quotes (const char* source,
const StrVec& commodities,