diff -r b72c6db6890b -r 5dc02b23752f src/activeqt/container/qaxbase.cpp --- a/src/activeqt/container/qaxbase.cpp Wed Jun 23 19:07:03 2010 +0300 +++ b/src/activeqt/container/qaxbase.cpp Tue Jul 06 15:10:48 2010 +0300 @@ -1353,11 +1353,9 @@ // There seams to be a naming problem in mingw headers -#ifdef Q_CC_GNU -#ifndef COAUTHIDENTITY +#if defined(Q_CC_GNU) && !defined(COAUTHIDENTITY) && !defined(__MINGW64_VERSION_MAJOR) #define COAUTHIDENTITY AUTH_IDENTITY #endif -#endif /*! @@ -2543,6 +2541,11 @@ break; } if (funcdesc->invkind == INVOKE_PROPERTYPUT) { + // remove the typename guessed for property setters + // its done only for setter's with more than one parameter. + if (funcdesc->cParams - funcdesc->cParamsOpt > 1) { + type.clear(); + } QByteArray set; if (isupper(prototype.at(0))) { set = "Set";