Hello everyone, I am a inheritance problem with Qt 5.0.1. I have a class declared as:
Qt Code:
  1. class WorldGui : public World, public MainWindow
To copy to clipboard, switch view to plain text mode 
in the MainWindow class I have a function:
Qt Code:
  1. void MainWindow::fileLoadCb()
To copy to clipboard, switch view to plain text mode 
that is called through the mechanism of Signal/Slot of MainWindow.
Within this function I would want to call a function of WordlGui
Qt Code:
  1. Load( filename );
To copy to clipboard, switch view to plain text mode 
how can I do ?
I could get an example of code that tell me how to do ?
I'm going crazy with this problem, which I think is not that difficult, but I can not find the solution.