[gnome-shell] fix a missed variable rename in 33dca516



commit 01cd42bd5178fd3008607df9941fad6130e07c0e
Author: Dan Winship <danw gnome org>
Date:   Mon Mar 22 12:12:04 2010 -0400

    fix a missed variable rename in 33dca516

 js/ui/widget.js |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/js/ui/widget.js b/js/ui/widget.js
index 1cb740f..0d50a19 100644
--- a/js/ui/widget.js
+++ b/js/ui/widget.js
@@ -143,7 +143,7 @@ ClockWidget.prototype = {
         let msec_remaining = 60000 - (1000 * this.currentTime.getSeconds() +
                                       this.currentTime.getMilliseconds());
         if (msec_remaining < 500) {
-            this.currentTime.setMinutes(time.getMinutes() + 1);
+            this.currentTime.setMinutes(this.currentTime.getMinutes() + 1);
             msec_remaining += 60000;
         }
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]