ID:278410
 
I keep getting a direct base 'QWidget' inaccessible in 'MainWindow' due to ambiguity.

In function 'int qMain(int, char**)':
request for member 'show' is ambiguous
cnadidates are: void QWidget::show()
void QWidget::show()

The ambiguity it's here

in class MainWindow. how you can see i have a public QMainWindow and a public QWidget.

class MainWindow : public QMainWindow, public QWidget
{
Q_OBJECT

public:
MainWindow(Server *myserver, QWidget *parent = 0);

~MainWindow();
private:
void createActions();
void createTrayIcon();
void setIcon();
void closeEvent(QCloseEvent *event);

QSystemTrayIcon *trayIcon;
QMenu *trayIconMenu;
QAction *open;
QAction *close;

public slots:
void reloadMenuBar();
void trayIconClicked(QSystemTrayIcon::ActivationReason);

private:
ServerWidget * myserverwidget;
QSystemTrayIcon *sticon;
};

You're creating a 'diamond' inheritance hierarchy. QMainWindow inherits from QWidget already, so you've got this structure:

      QWidget
    /        \
   /          \
QMainWindow - - Main Window


So your MainWindow class has two QWidget bases - your compiler is complaining that you're calling this function that could be answered by both the bases and you're not saying which one should answer it.

The solution is to just inherit from QMainWindow, not both QMainWindow and QWidget.

If you still insist on inheriting from both, aware of the trickiness associated with multiple inheritance, then there's syntax to say which base you want to invoke - I /believe/ it's something like QMainWindow::show() or QWidget::show() to get the two versions you've got there, but I'm not certain here.
In response to Jp
Basically most of things are QMainWindow. But i'm also doing Stay in Tray, which needs QWidget.
In response to Ocean King
You already are a QWidget. That's the point. QMainWindow is a QWidget already, I'm pretty sure.
In response to Jp
Well, i've also tryed to do w.QMainWindow::show()

but it throwed me 56 errors from all the other "functions".

EDIT: It throwed me those since i fixed that. but then all other errors came :(
In response to Ocean King
I think you'll find that the solution to your problem is to not inherit from QWidget. I'm not too flash on the syntax for multiple-inheritance shenanigans, because 99% of the time if you've got the situation you've got it's because you're doing it wrong.

Just take the code you had originally, and where you inherit from QMainWindow and QWidget, just inherit from QMainWindow. QMainWindow inherits from QWidget already, so inheriting from QWidget again gains you nothing.
In response to Jp
I don't know if i'm understanding or not. You mean that doing QMainWindow only would work? I've tryed that but gave me errors for every thing in MainWindow class that uses QWidget.
In response to Ocean King
It should work. Note that QMainWindow inherits QWidget.

What kinds of errors?
For future reference, StackOverflow and the #qt IRC channel on irc.freenode.net will probably be more helpful in the future- you were lucky Jp was around this time!
In response to Airjoe
Airjoe wrote:
For future reference, StackOverflow and the #qt IRC channel on irc.freenode.net will probably be more helpful in the future

Not with the way that he structured his post and the lack of information provided. If you post on StackOverflow you have to be respectful of those helping you by doing everything you can to help them help you, or most of the time you will just get yelled at and downvoted.

I used to whine at people for their posting habits around here, but it did not do any good. People make lazy posts on Byond, and they have no incentive to do otherwise because we baby them by making assumptions about what they want, analyzing their code until we understand what they are trying to do, and doing part of their work for them.

You cannot expect to do that on those sites and get away with it. As long as we continue to baby people, Byond will continue to be the better place for lazy developers to get help.

Note that I'm not specifically targeting Ocean King with all of these comments. His post was decent and could be made into a good request for help just by adding a few things it is missing (Don't tell us that there are errors; show us the errors. Don't tell us that "this is the section of code that the error describes," point us to the specific line in question, even the specific token if you can do that. I still have a feeling that at Stackoverflow he would be met first by a lot of comments for more information. And most of our community posts a lot worse than that.