From 84ea8e618b18a1f9d566a06e48e89c3adb087ab8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Soutad=C3=A9?= Date: Tue, 29 May 2012 19:58:42 +0200 Subject: [PATCH] Forgot a *100 in previous commit --- src/view/AccountPanel.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/view/AccountPanel.cpp b/src/view/AccountPanel.cpp index 5a734b2..84af2f8 100644 --- a/src/view/AccountPanel.cpp +++ b/src/view/AccountPanel.cpp @@ -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();