Все это ссылается на вот эту строку
void *result = QMetaType::construct(resultType, 0);
А так?
C++ (Qt)
void *result = QMetaType::construct(resultType, 0, 0);
Гранд мерси! Снимаю шляпу, ошибка пропала)
А может кто-нибудь знает тогда и следующую ошибку?
E:\*****\QXMPP\QXmppInvokable.cpp:113: ошибка: 'class QMetaMethod' has no member named 'signature'
QByteArray signature = metaObject()->method(idx).signature();
Ссылается на следующую строку
QByteArray signature = metaObject()->method(idx).signature();
А по поводу версии, там в шапке вот что
* This file is a part of QXmpp library.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.