2021-02-24 Fred Gleason <fredg@paravelsystems.com>

* Updated build system to use Qt5 instead of Qt4.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2021-02-24 16:12:22 -05:00
parent 5131b1d5fe
commit 57abeada3c
130 changed files with 481 additions and 441 deletions

View File

@@ -2,7 +2,7 @@
//
// Human-readable strings for QAbstractSocket::SocketError
//
// (C) Copyright 2019 Fred Gleason <fredg@paravelsystems.com>
// (C) Copyright 2019-2021 Fred Gleason <fredg@paravelsystems.com>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU Library General Public License
@@ -104,6 +104,22 @@ QString RDSocketStrings(QAbstractSocket::SocketError err)
ret="proxy protocol error";
break;
case QAbstractSocket::OperationError:
ret="operation error";
break;
case QAbstractSocket::SslInternalError:
ret="SSL internal error";
break;
case QAbstractSocket::SslInvalidUserDataError:
ret="SSL invalid user data error";
break;
case QAbstractSocket::TemporaryError:
ret="temporary error";
break;
case QAbstractSocket::UnknownSocketError:
break;
}