| Index: samples/total/client/SpreadsheetPresenter.dart
|
| diff --git a/samples/total/client/SpreadsheetPresenter.dart b/samples/total/client/SpreadsheetPresenter.dart
|
| index 9c321001fb50dd014225d2c823f4b634139cf7d1..30be23f10b661e18c130f0ce52551634dca77dd2 100644
|
| --- a/samples/total/client/SpreadsheetPresenter.dart
|
| +++ b/samples/total/client/SpreadsheetPresenter.dart
|
| @@ -826,9 +826,7 @@ class SpreadsheetPresenter implements SpreadsheetListener, SelectionListener {
|
|
|
| // Return the number of milliseconds since the epoch
|
| int _currentTimeMllis() {
|
| - Date now = new Date.now();
|
| - Date then = new Date.fromEpoch(0, now.timeZone);
|
| - return now.difference(then).inMilliseconds;
|
| + return new Date.now().value;
|
| }
|
|
|
| void _formulaCellSelectingInsertReference(RowCol clickLocation, RowCol dragLocation) {
|
|
|