In the old syntax one could: connect(source, SIGNAL(readProgress(int)), SIGNAL(progress(int)));
In the new syntax, is it equivalent to use connect(source, &SourceClass::readProgress, this, &ThisClass::progress); ... assuming that all of this is on a single thread?I'm not quite clear what thread context the first is using when repeating the signal?
Hamish _______________________________________________ Interest mailing list [email protected] https://lists.qt-project.org/listinfo/interest
