Forgot a *100 in previous commit

This commit is contained in:
Grégory Soutadé 2012-05-29 19:58:42 +02:00
parent a65ee9c24f
commit 84ea8e618b
1 changed files with 1 additions and 2 deletions

View File

@ -778,8 +778,7 @@ void AccountPanel::OnAccountModified(int row, int column)
if (_inModification || column != ACCOUNT_INIT) return;
amount = _accountsGrid->item(row, column)->text().replace(".", "").toInt();
_kiss->SetAccountAmount(id, _curMonth, _curYear, amount*100);
_kiss->SetAccountAmount(id, _curMonth, _curYear, amount);
_accountsInitValues[id] = amount;
UpdateStats();