~nmusatov/financisto/financisto-projects-activity

« back to all changes in this revision

Viewing changes to src/ru/orangesoftware/financisto/activity/BudgetListActivity.java

  • Committer: Denis Solonenko
  • Date: 2012-04-15 14:06:55 UTC
  • Revision ID: denis.solonenko@gmail.com-20120415140655-kcfhws11b9zkps39
Minor fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
280
280
            }
281
281
        }
282
282
 
283
 
        private float inHomeCurrency(ExchangeRateProvider rates, Currency fromCurrency, Currency toCurrency, long spent) {
 
283
        private double inHomeCurrency(ExchangeRateProvider rates, Currency fromCurrency, Currency toCurrency, long spent) {
284
284
            ExchangeRate r = rates.getRate(fromCurrency, toCurrency);
285
285
            return r.rate*spent;
286
286
        }