diff qt/qtd/MetaMarshall.d @ 292:19498f420252 signals

more QList goodness
author eldar
date Tue, 10 Nov 2009 19:29:42 +0000
parents f9559a957be9
children 8627891e4556
line wrap: on
line diff
--- a/qt/qtd/MetaMarshall.d	Mon Nov 09 20:49:26 2009 +0000
+++ b/qt/qtd/MetaMarshall.d	Tue Nov 10 19:29:42 2009 +0000
@@ -4,12 +4,12 @@
 
 template isQObjectType(T) // is a QObject type that belongs to the library
 {
-    enum isQObjectType = is(typeof(mixin("T." ~ "__isQObjectType")));
+    enum isQObjectType = is(T.__isQObjectType);
 }
 
 template isObjectType(T) // is a QObject type that belongs to the library
 {
-    enum isQObjectType = is(typeof(mixin("T." ~ "__isObjectType")));
+    enum isObjectType = is(T.__isObjectType);
 }
 
 template isValueType(T) // is a QObject type that belongs to the library