Re: Menu bar not appearing
Re: Menu bar not appearing
I am completely new to using the qt framework. could you please explain how I could modify my code to implement your fixes?
Thank you for putting up with me.
Re: Menu bar not appearing
Quote:
Originally Posted by
GUIman
I am completely new to using the qt framework. could you please explain how I could modify my code to implement your fixes?
Thank you for putting up with me.
hi,
welcome to QtCentre.
As Chris said, after creating the menus
Just add ,
Code:
Lines::Lines()
{
createActions();
createMenus();
menuBar()->addMenu(fileMenu);
...............
...............
}
in class Lines constructor.
hope it helps.
Bala
Re: Menu bar not appearing
I'd put it in createMenus() myself. Seems the logical place for it.
Re: Menu bar not appearing
Thank you so much
I got it now!