From daa02c416e6122770052cd2cf73685d9edaea55c Mon Sep 17 00:00:00 2001 From: Blake Madden Date: Wed, 20 Mar 2024 13:13:49 -0400 Subject: [PATCH] Comment cleanup --- src/util/downloadfile.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/util/downloadfile.h b/src/util/downloadfile.h index ec21fb9d..376fa650 100644 --- a/src/util/downloadfile.h +++ b/src/util/downloadfile.h @@ -64,8 +64,9 @@ m_downloader.Start(); @endcode @warning An `wxEvtHandler`-derived class can either be connected to a single QueueDownload - or a single FileDownload object. This is because the class must bind its @c wxEVT_WEBREQUEST_STATE - event to the `QueueDownload`'s or `FileDownload`'s @c ProcessRequest() method. + or a single FileDownload object. This is because the class must bind its + @c wxEVT_WEBREQUEST_STATE event to the `QueueDownload`'s or + `FileDownload`'s @c ProcessRequest() method. */ class QueueDownload { @@ -135,7 +136,8 @@ class QueueDownload void CancelPending(); /** @brief Disable SSL certificate verification. - @details This can be used to connect to self signed servers or other invalid SSL connections.\n + @details This can be used to connect to self signed servers or + other invalid SSL connections.\n Disabling verification makes the communication insecure. @param disable @c true to disable SSL certificate verification.*/ void DisablePeerVerify(const bool disable)noexcept @@ -296,7 +298,8 @@ class FileDownload { m_showProgress = show; } /** @brief Disable SSL certificate verification. - @details This can be used to connect to self signed servers or other invalid SSL connections.\n + @details This can be used to connect to self signed servers or + other invalid SSL connections.\n Disabling verification makes the communication insecure. @param disable @c true to disable SSL certificate verification.*/ void DisablePeerVerify(const bool disable)noexcept