Quote Originally Posted by DPinLV
Is this because I am using a QT type, QString?
No, it works, because you use a const reference. In case of queued connections, it works the same way as:
Qt Code:
  1. QObject::connect(m_emitter_class,
  2. SIGNAL(addParsedDataSignalQString(QString)),
  3. m_pkr_receiver_class,
  4. SLOT(addToTable___(QString)),
  5. Qt::QueuedConnection);
To copy to clipboard, switch view to plain text mode