[Compbench-devel] CompBenchmarks++/Qt-4 main.cpp,1.11,1.12
Brought to you by:
xfred
|
From: Frederic T. <xf...@us...> - 2007-09-12 17:50:21
|
Update of /cvsroot/compbench/CompBenchmarks++/Qt-4 In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv29196 Modified Files: main.cpp Log Message: Working message console. Index: main.cpp =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/Qt-4/main.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** main.cpp 12 Sep 2007 16:24:38 -0000 1.11 --- main.cpp 12 Sep 2007 17:50:17 -0000 1.12 *************** *** 89,103 **** int i; ! /* ! CBM::cbmUI->Information(CBM::UI::CompilerAutodetect, ! "", ! CBM::UI::Start); ! for(i=0; i<known_compiler_number; i++) { C=SC.select(known_compilers[i]); if (C) { App->compilerRegister(C); ! } CBM::cbmUI->Information(CBM::UI::CompilerAutodetect, "", --- 89,103 ---- int i; ! /* CBM::cbmUI->Information(CBM::UI::CompilerAutodetect, ! "", ! CBM::UI::Start); ! */ + /* for(i=0; i<known_compiler_number; i++) { C=SC.select(known_compilers[i]); if (C) { App->compilerRegister(C); ! } CBM::cbmUI->Information(CBM::UI::CompilerAutodetect, "", *************** *** 140,144 **** // sa->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn); ! console=new StatusConsole; planCompilerSelected=0; App=this; --- 140,144 ---- // sa->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn); ! console=new StatusConsole(sa); planCompilerSelected=0; App=this; *************** *** 290,295 **** // W->show(); ! T=new PackageInstallThread(_package); ! T->start(); } --- 290,296 ---- // W->show(); ! /* T=new PackageInstallThread(_package); ! T->start(); ! */ } *************** *** 398,410 **** void Application::doCompilerAutodetect(void) { ! /* StatusWidget *W; ! CompilerAutodetectThread *T; ! W=new StatusWidget(0); ! ! W->show(); ! T=new CompilerAutodetectThread(W); ! T->start(); ! */ } --- 399,406 ---- void Application::doCompilerAutodetect(void) { ! CompilerAutodetectThread *T; ! T=new CompilerAutodetectThread(); ! T->start(); } |