QTfrontend/pagedata.h
changeset 5746 fbc52bb92cad
parent 5582 48ced03a9949
child 5754 583b7a683b17
--- a/QTfrontend/pagedata.h	Sat Sep 03 12:35:49 2011 +0200
+++ b/QTfrontend/pagedata.h	Sat Sep 03 21:23:20 2011 +0400
@@ -18,10 +18,12 @@
 
 #ifndef PAGE_DATA_H
 #define PAGE_DATA_H
-#include <QWebView>
+
 #include <QUrl>
 #include "AbstractPage.h"
 
+class QTextBrowser;
+
 class PageDataDownload : public AbstractPage
 {
     Q_OBJECT
@@ -30,10 +32,12 @@
     PageDataDownload(QWidget* parent = 0);
 
     QPushButton *BtnBack;
-    QWebView *web;
+    QTextBrowser *web;
 
 private slots:
     void install(const QUrl &url);
+
+    void downloadIssueFinished();
 };
 
 #endif