[Development] Notes on Metaobject & QML discussion @ QCS2016

2016-09-03 Thread Thiago Macieira
https://wiki.qt.io/QtCS2016_MetaObject * qMetaType() == qMetaType() ** Because QMetaObject::normalizedType("const T") == "T" ** Fix it * Q_NAMESPACE ** Keep it in 5.8 ** look into having it with multiple .h ** Q_ENUM_NS(OtherNamespace::Enum) or using Enum = OtherNamespace::Enum; is a good idea *

Re: [Development] Using platform-native APIs for terminating QThreads

2016-09-03 Thread Thiago Macieira
Em sexta-feira, 2 de setembro de 2016, às 23:45:26 CEST, Marc Mutz escreveu: > On Friday 02 September 2016 22:35:59 Thiago Macieira wrote: > > However, the documentation from the ABI says that forced unwinds cannot be > > stopped, so you can't swallow the exception even if you wanted to. Are you >