[Lprof-devel] lprof/src/parmsqt profileparms.cpp,1.58,1.59
Brought to you by:
hvengel
|
From: Hal E. <hv...@us...> - 2008-03-01 23:47:19
|
Update of /cvsroot/lprof/lprof/src/parmsqt In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv11601/parmsqt Modified Files: profileparms.cpp Log Message: Add the Qt::WStyle_Dialog flag. This should prevent this dialog from having a taskbar entry. Needs to be tested on a system where this was happening. Index: profileparms.cpp =================================================================== RCS file: /cvsroot/lprof/lprof/src/parmsqt/profileparms.cpp,v retrieving revision 1.58 retrieving revision 1.59 diff -C2 -d -r1.58 -r1.59 *** profileparms.cpp 19 Feb 2008 21:02:51 -0000 1.58 --- profileparms.cpp 1 Mar 2008 23:47:14 -0000 1.59 *************** *** 169,173 **** ProfileParms::ProfileParms(QWidget *parent ) ! : QDialog(parent, "", 0, Qt::WStyle_SysMenu | Qt::WStyle_MinMax ) { setupUi(this); --- 169,173 ---- ProfileParms::ProfileParms(QWidget *parent ) ! : QDialog(parent, "", 0, Qt::WStyle_SysMenu | Qt::WStyle_MinMax | Qt::WStyle_Dialog) { setupUi(this); |