I am using Qt Builder to create a simple window.
I used the menu editor to add a menu.
Now, I figured out how to connect one of the menu items to the close()
method of the main window. My problem is how to add a slot to the main window. Here is what I have:
private slots:
void OnAbout();
However, I can't get this method to show up in the 'Signals and Slots Editor'. How can I get it to show up?