/[projects]/infoscreen/MainView.cpp
ViewVC logotype

Diff of /infoscreen/MainView.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 890 by torben, Thu Jun 24 12:14:33 2010 UTC revision 891 by torben, Thu Jun 24 13:01:35 2010 UTC
# Line 306  void MainView::switchScreens() Line 306  void MainView::switchScreens()
306    
307  void MainView::errorInfoScreen(QString msg)  void MainView::errorInfoScreen(QString msg)
308  {  {
309          ensureVisible(web);      ensureVisible(web);
310          web->setHtml("<html>\      QString html("<html><body text='#505050' bgcolor='#000000'>");
311                  <body text='#505050' bgcolor='#000000'>\      html.append("<table width='100%' height='100%'><tr><td align='center' valign='middel'><h1>")
312          <table width='100%' height='100%'><tr><td align='center' valign='middel'><h1>" + msg+ "</h1></td></tr></table>\          .append(msg)
313                  </body></html>");          .append("</h1></td></tr></table></body></html>");
314        web->setHtml(html);
315  }  }
316    
317  void MainView::ensureVisible(QWidget* widget)  void MainView::ensureVisible(QWidget* widget)

Legend:
Removed from v.890  
changed lines
  Added in v.891

  ViewVC Help
Powered by ViewVC 1.1.20