*** no comment ***
This commit is contained in:
parent
c17c5dbcaf
commit
7a965565cf
1 changed files with 4 additions and 4 deletions
8
ofx.cc
8
ofx.cc
|
|
@ -38,7 +38,7 @@ int ofx_proc_account_cb(struct OfxAccountData data, void * account_data)
|
|||
|
||||
if (data.currency_valid) {
|
||||
commodity_t * commodity = commodity_t::find_commodity(data.currency, true);
|
||||
commodity->flags |= COMMODITY_STYLE_SUFFIXED | COMMODITY_STYLE_SEPARATED;
|
||||
commodity->flags() |= COMMODITY_STYLE_SUFFIXED | COMMODITY_STYLE_SEPARATED;
|
||||
|
||||
commodities_map::iterator i = ofx_account_currencies.find(data.account_id);
|
||||
if (i == ofx_account_currencies.end())
|
||||
|
|
@ -139,13 +139,13 @@ int ofx_proc_security_cb(struct OfxSecurityData data, void * security_data)
|
|||
return -1;
|
||||
|
||||
commodity_t * commodity = commodity_t::find_commodity(symbol, true);
|
||||
commodity->flags |= COMMODITY_STYLE_SUFFIXED | COMMODITY_STYLE_SEPARATED;
|
||||
commodity->flags() |= COMMODITY_STYLE_SUFFIXED | COMMODITY_STYLE_SEPARATED;
|
||||
|
||||
if (data.secname_valid)
|
||||
commodity->name = data.secname;
|
||||
commodity->name() = data.secname;
|
||||
|
||||
if (data.memo_valid)
|
||||
commodity->note = data.memo;
|
||||
commodity->note() = data.memo;
|
||||
|
||||
commodities_map::iterator i = ofx_securities.find(data.unique_id);
|
||||
if (i == ofx_securities.end()) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue