One minor oops found: On quarta-feira, 26 de junho de 2013 13.50.06, Thiago Macieira wrote: > +++ b/src/qml/qml/qqmlextensionplugin.h > -private: > Q_DISABLE_COPY(QQmlExtensionPlugin)
By removing the private:, with C++98 the error from trying to copy a Q_DISABLE_COPY moves from compile time to link time (undefined reference to QQmlExtensionPlugin's copy constructor or assignment operator). Bring it back. -- Thiago Macieira - thiago.macieira (AT) intel.com Software Architect - Intel Open Source Technology Center
signature.asc
Description: This is a digitally signed message part.
_______________________________________________ Development mailing list [email protected] http://lists.qt-project.org/mailman/listinfo/development
