aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar IceN9ne2018-05-20 16:19:55 -0400
committerGravatar IceN9ne2018-05-20 16:19:55 -0400
commit71ff5f547bda3991cf62c795f39ad5e472b71514 (patch)
tree3282c542584a817068fed3e1e23d27b415796cbc /src
parentAboutDialog: OpenSSL infos fix (diff)
downloadKVIrc-71ff5f547bda3991cf62c795f39ad5e472b71514.tar.gz
KVIrc-71ff5f547bda3991cf62c795f39ad5e472b71514.tar.bz2
KVIrc-71ff5f547bda3991cf62c795f39ad5e472b71514.zip
AboutDialog: Fix line break for non-SSL builds
Diffstat (limited to 'src')
-rw-r--r--src/modules/about/AboutDialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/about/AboutDialog.cpp b/src/modules/about/AboutDialog.cpp
index ba0e0916e..f88e769a3 100644
--- a/src/modules/about/AboutDialog.cpp
+++ b/src/modules/about/AboutDialog.cpp
@@ -195,8 +195,8 @@ AboutDialog::AboutDialog()
infoString += __tr2qs_ctx("Features", "about");
infoString += ": ";
infoString += KviBuildInfo::features();
- infoString += "<br>";
#ifdef COMPILE_SSL_SUPPORT
+ infoString += "<br>";
infoString += __tr2qs_ctx("OpenSSL version", "about");
infoString += ": ";
#if (OPENSSL_VERSION_NUMBER < 0x10100000L)