From 571cb24e2c142b4089d1a263b9f3f97f5e211b51 Mon Sep 17 00:00:00 2001 From: Peter Hartmann Date: Wed, 30 Sep 2009 16:42:37 +0200 Subject: Revert "Google Chat example: state that SSL is required" This reverts commit 59623e45ee31892c9ef210f8d7e396ccb0fe31a5. A fix for the same problem had been pushed by Simon shortly before that one. --- examples/webkit/googlechat/main.cpp | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/examples/webkit/googlechat/main.cpp b/examples/webkit/googlechat/main.cpp index 9e235a9..fd08114 100644 --- a/examples/webkit/googlechat/main.cpp +++ b/examples/webkit/googlechat/main.cpp @@ -43,25 +43,10 @@ #include #include "googlechat.h" -#ifndef QT_NO_OPENSSL -#include -#endif - int main(int argc, char * argv[]) { QApplication app(argc, argv); -#ifndef QT_NO_OPENSSL - if (!QSslSocket::supportsSsl()) { -#endif - QMessageBox::information(0, "Google Talk client", - "Your system does not support SSL, " - "which is required to run this example."); - return -1; -#ifndef QT_NO_OPENSSL - } -#endif - QNetworkProxyFactory::setUseSystemConfigurationEnabled(true); GoogleChat *chat = new GoogleChat; -- cgit v0.12