[gnome-clocks] Rename StandaloneClock class



commit 05445224fad1799d445447b3ff536344ef37e3f3
Author: Paolo Borelli <pborelli gnome org>
Date:   Wed Aug 29 21:16:54 2012 +0200

    Rename StandaloneClock class

 gnomeclocks/world.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/gnomeclocks/world.py b/gnomeclocks/world.py
index bbf4359..4247396 100644
--- a/gnomeclocks/world.py
+++ b/gnomeclocks/world.py
@@ -144,7 +144,7 @@ class DigitalClock():
         self._last_time = None
         self.drawing = DigitalClockDrawing()
         self.standalone =\
-            DigitalClockStandalone(self.location, self.sunrise, self.sunset)
+            StandaloneClock(self.location, self.sunrise, self.sunset)
         self.update()
         self.timeout = GObject.timeout_add(1000, self.update)
 
@@ -355,7 +355,7 @@ class World(Clock):
         dialog.destroy()
 
 
-class DigitalClockStandalone(Gtk.Box):
+class StandaloneClock(Gtk.Box):
     def __init__(self, location, sunrise, sunset):
         Gtk.Box.__init__(self, orientation=Gtk.Orientation.VERTICAL)
         self.img = Gtk.Image()



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