You've declared aboutAction inside your UI with QtDesigner, so you should refere to it like this:
Qt Code:
connect( &ui.aboutAction, SIGNAL(triggered()), this, SLOT(about()) );To copy to clipboard, switch view to plain text mode
If you run your code from console I guess you'll get message that object aboutAction doesn't exist.
Bookmarks