Commit fc42f5c26bbc257cf782679f7b40075e05322647

  • avatar
  • jasmcdon
  • Tue Sep 29 11:35:01 CEST 2009
Remove mentions of QtSW.

Reviewed-by: Trust Me
(cherry picked from commit aa65b608b96f0b41e96093e6eb26ccc0f301afc9)
  
136136 For example:
137137
138138 \code
139 <object type="application/x-pdf" data="http://qtsoftware.com/document.pdf" width="500" height="400">
139 <object type="application/x-pdf" data="http://www.example.com/document.pdf" width="500" height="400">
140140 <param name="showTableOfContents" value="true" />
141141 <param name="hideThumbnails" value="false" />
142142 </object>
149149 \row \o mimeType
150150 \o "application/x-pdf"
151151 \row \o url
152 \o "http://qtsoftware.com/document.pdf"
152 \o "http://www.example.com/document.pdf"
153153 \row \o argumentNames
154154 \o "showTableOfContents" "hideThumbnails"
155155 \row \o argumentVaues
  
2727 QWidget *parent = 0;
2828//! [Using QWebView]
2929 QWebView *view = new QWebView(parent);
30 view->load(QUrl("http://qtsoftware.com/"));
30 view->load(QUrl("http://qt.nokia.com/"));
3131 view->show();
3232//! [Using QWebView]
3333 return app.exec();