00001 #include "ValidationReportDlg.h" 00002 00003 00004 ValidationReportDlg::ValidationReportDlg( ValidationReport * newReport ) { 00005 report = newReport ; 00006 reportWindow = new QTextBrowser () ; 00007 reportWindow->hide() ; 00008 reportWindow->setVScrollBarMode(QScrollView::Auto) ; 00009 reportWindow->setCaption( "Project Validation Report" ); 00010 reportWindow->setText ("Validation report will appear in this window") ; 00011 reportWindow->resize( 500, 600 ) ; 00012 } 00013