diff generator/dgenerator.cpp @ 39:a5cba313c924

network and webkit are wrapped now
author eldar
date Sun, 17 May 2009 01:44:06 +0000
parents 8022ef40f110
children d5a6b6269f44
line wrap: on
line diff
--- a/generator/dgenerator.cpp	Sat May 16 21:34:54 2009 +0000
+++ b/generator/dgenerator.cpp	Sun May 17 01:44:06 2009 +0000
@@ -72,7 +72,7 @@
                   << "signed short" << "Array" << "GLuint" << "GLenum" << "GLint"
                   << "unsigned long" << "ulong" << "long" << "QByteRef"
                   << "QStringList" << "QList" << "QVector" << "QPair"
-                  << "QSet" << "QStringRef";
+                  << "QSet" << "QStringRef" << "quintptr";
 }
 
 QString DGenerator::fileNameForClass(const AbstractMetaClass *d_class) const
@@ -1831,7 +1831,7 @@
     if (!m_isRecursive)
         s << "module " << d_class->package() << "." << d_class->name() <<";" << endl << endl;
 
-
+/*
     s << "// some type info" << endl;
     QString hasVirtuals = d_class->hasVirtualFunctions() ? "has" : "doesn't have";
     QString isFinal = d_class->isFinal() ? "is" : "is not";
@@ -1844,7 +1844,7 @@
       << "// " << d_class->hasProtectedFunctions() << endl
       << "// " << d_class->hasFieldAccessors() << endl
       << "// " << d_class->typeEntry()->isObject() << endl;
-
+*/
 
     const ComplexTypeEntry *ctype = d_class->typeEntry();
     if (!ctype->addedTo.isEmpty() && !m_isRecursive) {