diff examples/widgets/analogclock/AnalogClock.d @ 192:1d272f0bfefa

more D2 fixed
author eldar
date Sun, 12 Jul 2009 23:00:56 +0000
parents 834feae7809b
children 256ab6cb8e85
line wrap: on
line diff
--- a/examples/widgets/analogclock/AnalogClock.d	Sun Jul 12 21:03:57 2009 +0000
+++ b/examples/widgets/analogclock/AnalogClock.d	Sun Jul 12 23:00:56 2009 +0000
@@ -47,7 +47,6 @@
 import qt.gui.QPaintEvent;
 import qt.gui.QPainter;
 
-import tango.io.Stdout;
 
 class AnalogClock : public QWidget
 {
@@ -64,12 +63,12 @@
 
     void paintEvent(QPaintEvent event)
     {
-        static const QPoint[3] hourHand = [
+        const QPoint[3] hourHand = [
             QPoint(7, 8),
             QPoint(-7, 8),
             QPoint(0, -40)
         ];
-        static const QPoint[3] minuteHand = [
+        const QPoint[3] minuteHand = [
             QPoint(7, 8),
             QPoint(-7, 8),
             QPoint(0, -70)