reminding comment added

This commit is contained in:
Uwe Rathmann 2018-05-09 15:45:10 +02:00
parent 0933edac5d
commit b29f688df2
1 changed files with 7 additions and 0 deletions

View File

@ -180,6 +180,13 @@ QskMetaFunction::Type QskMetaFunction::functionType() const
void QskMetaFunction::invoke( void QskMetaFunction::invoke(
QObject* object, void* argv[], Qt::ConnectionType connectionType ) QObject* object, void* argv[], Qt::ConnectionType connectionType )
{ {
#if 1
/*
Since Qt 5.10 we also have QMetaObject::invokeMethod
with functor based callbacks. TODO ...
*/
#endif
// code is not thread safe - TODO ... // code is not thread safe - TODO ...
QPointer< QObject > receiver( object ); QPointer< QObject > receiver( object );