Название: [solved]Странное поведени приложения при вызове QmessageBox::about Отправлено: Unnamed_Hero от Май 16, 2009, 13:15 Qt 4.5.1, Slackware, qt creator 1.1
Простейшее приложение. главная форма не рисуется, только иконка в трее. там единственный пункт меню, вызывающий QMessageBox::about. После нажатия ОК на окошке QMesageBox программа выходит, что весьма странно. Код: /home/unnamed_hero/work/qt/testa/testa exited with code 0 main.cpp Код: #include <QtGui/QApplication> mainwindow.h Код: #ifndef MAINWINDOW_H mainwindow.cpp Код: #include "mainwindow.h" Название: Re: Странное поведени приложения при вызове QmessageBox::about Отправлено: Rcus от Май 16, 2009, 13:44 Цитировать quitOnLastWindowClosed : bool This property holds whether the application implicitly quits when the last window is closed. The default is true. If this property is true, the applications quits when the last visible primary window (i.e. window with no parent) with the Qt::WA_QuitOnClose attribute set is closed. By default this attribute is set for all widgets except for sub-windows. Refer to Qt::WindowType for a detailed list of Qt::Window objects. Название: Re: Странное поведени приложения при вызове QmessageBox::about Отправлено: Unnamed_Hero от Май 16, 2009, 15:09 Да, спасибо. Почти сам дошёл до этого.
|