[Solved] Permanent Threads in QT
You should use Qt signaling mechanism. class QWindow : QMainWindow { //this macro is important for QMake to let the meta programming mechanism know //this class uses Qt signalling Q_OBJECT slots: void updateLabel(QString withWhat) … }; And now You just need to connect this slot to some signal class SomeThreadClass : QObject { Q_OBJECT … … Read more