summaryrefslogtreecommitdiffstats
path: root/examples/webkit
diff options
context:
space:
mode:
authorPeter Hartmann <peter.hartmann@nokia.com>2009-09-30 14:42:37 (GMT)
committerPeter Hartmann <peter.hartmann@nokia.com>2009-09-30 14:56:41 (GMT)
commit571cb24e2c142b4089d1a263b9f3f97f5e211b51 (patch)
tree245d6c8cd7262c4d0465e248009d2990a8bb61be /examples/webkit
parentad2a693584bd2892a568e3830b1c390d6e5f012a (diff)
downloadQt-571cb24e2c142b4089d1a263b9f3f97f5e211b51.zip
Qt-571cb24e2c142b4089d1a263b9f3f97f5e211b51.tar.gz
Qt-571cb24e2c142b4089d1a263b9f3f97f5e211b51.tar.bz2
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.
Diffstat (limited to 'examples/webkit')
-rw-r--r--examples/webkit/googlechat/main.cpp15
1 files changed, 0 insertions, 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 <QNetworkProxyFactory>
#include "googlechat.h"
-#ifndef QT_NO_OPENSSL
-#include <QSslSocket>
-#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;