From 68813448cbac88cff9c7f60021a0e255e2445375 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Wed, 1 Mar 2006 04:46:21 +0000 Subject: Added support for unlimited factoids. --- textual.cc | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'textual.cc') diff --git a/textual.cc b/textual.cc index 1857ddbf..2ea2aae6 100644 --- a/textual.cc +++ b/textual.cc @@ -650,8 +650,7 @@ unsigned int textual_parser_t::parse(std::istream& in, #endif // TIMELOG_SUPPORT case 'D': { // a default commodity for "entry" - amount_t amt; - amt.parse(skip_ws(line + 1)); + amount_t amt(skip_ws(line + 1)); commodity_t::default_commodity = &amt.commodity(); break; } @@ -669,8 +668,6 @@ unsigned int textual_parser_t::parse(std::istream& in, break; case 'P': { // a pricing entry - std::time_t date; - char * date_field = skip_ws(line + 1); char * time_field = next_element(date_field); if (! time_field) break; @@ -682,6 +679,7 @@ unsigned int textual_parser_t::parse(std::istream& in, date_buffer[std::strlen(date_field)] = ' '; std::strcpy(&date_buffer[std::strlen(date_field) + 1], time_field); + std::time_t date; struct std::tm when; if (strptime(date_buffer, "%Y/%m/%d %H:%M:%S", &when)) { date = std::mktime(&when); @@ -690,10 +688,8 @@ unsigned int textual_parser_t::parse(std::istream& in, } std::string symbol; - amount_t price; - parse_symbol(symbol_and_price, symbol); - price.parse(symbol_and_price); + amount_t price(symbol_and_price); commodity_t * commodity = commodity_t::find_commodity(symbol, true); commodity->add_price(date, price); -- cgit v1.2.3