Hi,

I'd like to access the user interface from another class.

If I call this in my main class "emulation", it works :
Qt Code:
  1. ui->LOG->append("text");
To copy to clipboard, switch view to plain text mode 

But i want to do the same thing from another class "robot" :

Qt Code:
  1. emulation::ui.LOG->append("text");
To copy to clipboard, switch view to plain text mode 

Unfortunately, it doesn't work !

I really need your help !