diff options
| author | 2018-05-20 16:19:55 -0400 | |
|---|---|---|
| committer | 2018-05-20 16:19:55 -0400 | |
| commit | 71ff5f547bda3991cf62c795f39ad5e472b71514 (patch) | |
| tree | 3282c542584a817068fed3e1e23d27b415796cbc /src/modules/about | |
| parent | AboutDialog: OpenSSL infos fix (diff) | |
| download | KVIrc-71ff5f547bda3991cf62c795f39ad5e472b71514.tar.gz KVIrc-71ff5f547bda3991cf62c795f39ad5e472b71514.tar.bz2 KVIrc-71ff5f547bda3991cf62c795f39ad5e472b71514.zip | |
AboutDialog: Fix line break for non-SSL builds
Diffstat (limited to 'src/modules/about')
| -rw-r--r-- | src/modules/about/AboutDialog.cpp | 2 |
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) |
