Commit f5ac24e4 authored by Don Gagne's avatar Don Gagne

Merge pull request #944 from DonLakeFlyer/RemoveSSL

Remove SSL usage from code
parents 5979217c d61846e3
This diff is collapsed.
......@@ -105,14 +105,6 @@ bool QGCCore::init(void)
{
QSettings settings;
// SSL support is required. No reason to go any further without it
if (!QSslSocket::supportsSsl()) {
QMessageBox::critical(NULL,
QObject::tr("Missing SSL Support"),
QObject::tr("QGroundControl requires support for SSL to be installed prior to running. Please see http://www.qgroundcontrol.org/downloads for instructions on installing prerequisites for QGroundControl."));
return false;
}
// Exit main application when last window is closed
connect(this, SIGNAL(lastWindowClosed()), this, SLOT(quit()));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment