~schunka/financisto/cz-locales

« back to all changes in this revision

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

  • Committer: Denis Solonenko
  • Date: 2012-04-15 14:38:26 UTC
  • Revision ID: denis.solonenko@gmail.com-20120415143826-ws7txou5y764cedk
Add extended total to blotter

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
    protected TotalCalculationTask createTotalCalculationTask() {
61
61
        return new TotalCalculationTask(this, totalText) {
62
62
            @Override
63
 
            protected Total getTotal() {
 
63
            public Total getTotalInHomeCurrency() {
64
64
                long t0 = System.currentTimeMillis();
65
65
                try {
66
66
                    try {
79
79
                    return Total.ZERO;
80
80
                }
81
81
            }
 
82
 
 
83
            @Override
 
84
            public Total[] getTotals() {
 
85
                return new Total[0];
 
86
            }
82
87
        };
83
88
    }
84
89