1234567891011121314151617181920212223242526 |
- /*295:*/
- #line 33 "./abouttypica.w"
-
- #include "abouttypica.h"
-
- /*296:*/
- #line 42 "./abouttypica.w"
-
- AboutTypica::AboutTypica():QMainWindow(NULL)
- {
- QFile aboutFile(":/resources/html/about.html");
- aboutFile.open(QIODevice::ReadOnly);
- QByteArray content= aboutFile.readAll();
- TypicaWebView*banner= new TypicaWebView;
- banner->setHtml(content,QUrl("qrc:/resources/html/about.html"));
- aboutFile.close();
- setCentralWidget(banner);
- }
-
- #line 6947 "./typica.w"
-
- /*:296*/
- #line 36 "./abouttypica.w"
-
-
- /*:295*/
|