Add SSL version info to About dialog

This commit is contained in:
Magne Sjaastad
2025-01-24 14:19:05 +01:00
parent 3f08901379
commit 9b11539353

View File

@@ -107,7 +107,9 @@ void RicHelpAboutFeature::onActionTriggered( bool isChecked )
txt = " Use of SSL is available";
if ( isSslSupported )
{
txt += " and supported";
txt += " and supported : ";
txt += QSslSocket::sslLibraryVersionString();
txt += ", Build: " + QSslSocket::sslLibraryBuildVersionString();
}
else
{