Hi guys,

if my class hierarchy would look like this:

Qt Code:
  1. _ mainWindow
  2. |
  3. -------------------------
  4. | | |
  5. class_A class_B logClass
  6. | |
  7. class_C class_D
  8. |
  9. class_E
To copy to clipboard, switch view to plain text mode 

and my logClass has the following slot:
Qt Code:
  1. public slots:
  2. void setLog(QString &str, int &logType);
To copy to clipboard, switch view to plain text mode 

what is the best way to connect a signal from within class_E or class_D with my logClass???

I hope you get what I have problems with....