Hi
I am completely new to QT
I am using VS2008 and have created a simple app that consists of a main window with a menu.
I created the main form with a menu using QT Designer.
I am having problems linking the menu items to methods in my code.
I have declared a slot in my header file -
public slots:
void OnOpen();
Then in my constructor I have
connect(ui.actionOpen,SIGNAL(triggered()),this,SLOT(on_open()));
The return value from this call is false.
Can anyone explain what I am doing wrong
TIA Graham