diff examples/opengl/hellogl/glwidget_d1.d @ 284:1f6923c8cba0

consistent emit syntax.
author eldar
date Fri, 16 Oct 2009 12:23:12 +0000
parents 06e7d3219464
children
line wrap: on
line diff
--- a/examples/opengl/hellogl/glwidget_d1.d	Fri Oct 16 05:32:23 2009 +0000
+++ b/examples/opengl/hellogl/glwidget_d1.d	Fri Oct 16 12:23:12 2009 +0000
@@ -86,7 +86,7 @@
             normalizeAngle(&angle);
             if (angle != xRot) {
                 xRot = angle;
-                xRotationChanged.emit(angle);
+                xRotationChanged(angle);
                 updateGL();
             }
         }
@@ -96,7 +96,7 @@
             normalizeAngle(&angle);
             if (angle != yRot) {
                 yRot = angle;
-                yRotationChanged.emit(angle);
+                yRotationChanged(angle);
                 updateGL();
             }
         }
@@ -106,7 +106,7 @@
             normalizeAngle(&angle);
             if (angle != zRot) {
                 zRot = angle;
-                zRotationChanged.emit(angle);
+                zRotationChanged(angle);
                 updateGL();
             }
         }