[PC-BSD Commits] r169 - pcbsd/trunk/PCInstall
svn at pcbsd.org
svn at pcbsd.org
Wed Apr 11 14:37:11 PDT 2007
Author: kris
Date: 2007-04-11 22:37:10 +0100 (Wed, 11 Apr 2007)
New Revision: 169
Modified:
pcbsd/trunk/PCInstall/main.cpp
Log:
Update to installer, which removes full-screen mode, letting fluxbox show in bg
Modified: pcbsd/trunk/PCInstall/main.cpp
===================================================================
--- pcbsd/trunk/PCInstall/main.cpp 2007-04-11 16:43:31 UTC (rev 168)
+++ pcbsd/trunk/PCInstall/main.cpp 2007-04-11 21:37:10 UTC (rev 169)
@@ -10,10 +10,10 @@
QApplication a( argc, argv );
//QWidget background(0, "Background", Qt::WindowFullScreen);
- background b(0,0, FALSE);
+ //background b(0,0, FALSE);
- //PCInstall w(&b, FALSE, Qt::WStyle_Customize | Qt::WStyle_Dialog);
- PCInstall w(&b);
+ PCInstall w(0, 0, FALSE, Qt::WStyle_Customize | Qt::WStyle_Dialog);
+ //PCInstall w(0);
//QWidget *tmp = QApplication::desktop();
w.setGeometry(64, 48, 896, 672);
@@ -22,7 +22,7 @@
w.ProgramInit();
w.setStyle(QStyleFactory::create( "Plastik" ));
- b.showFullScreen();
+ //b.showFullScreen();
w.exec();
a.connect( &a, SIGNAL( lastWindowClosed() ), &a, SLOT( quit() ) );
More information about the Commits
mailing list