-rw-r--r-- | noncore/net/ubrowser/httpfactory.cpp | 5 | ||||
-rw-r--r-- | noncore/net/ubrowser/httpfactory.h | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/noncore/net/ubrowser/httpfactory.cpp b/noncore/net/ubrowser/httpfactory.cpp index 0586e96..4ace4cb 100644 --- a/noncore/net/ubrowser/httpfactory.cpp +++ b/noncore/net/ubrowser/httpfactory.cpp @@ -224,4 +224,9 @@ const QByteArray HttpFactory::processResponse( int sockfd, bool &isText ) const isText = true; printf( "HttpFactory::processResponse: content type text\n" ); + if( currentLine.contains( "html", false ) ) + { + browser->setTextFormat(Qt::RichText); + printf( "HttpFactory::processResponse: content type html\n" ); + } } diff --git a/noncore/net/ubrowser/httpfactory.h b/noncore/net/ubrowser/httpfactory.h index 214120c..ec59ebb 100644 --- a/noncore/net/ubrowser/httpfactory.h +++ b/noncore/net/ubrowser/httpfactory.h @@ -31,5 +31,5 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #include <arpa/inet.h> -#include "httpcomm.h" +//#include "httpcomm.h" class HttpFactory : public QMimeSourceFactory @@ -41,5 +41,5 @@ public: private: // QSocket *socket; - HttpComm *comm; +// HttpComm *comm; QTextDrag *text; QImageDrag *image; |