summaryrefslogtreecommitdiffstats
path: root/examples/webkit/googlechat/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/webkit/googlechat/main.cpp')
-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;