extensions/source/activex/so_activex.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 09189100581c97dc9eb2102f14dd427924cf0e3c Author: Mike Kaganski <[email protected]> AuthorDate: Mon Nov 10 13:07:43 2025 +0500 Commit: Mike Kaganski <[email protected]> CommitDate: Fri Nov 14 06:03:42 2025 +0100 A typo in variable name Change-Id: I4aa4de8a1b43f5c848eea082ac17f9c02377a5f0 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/193976 Tested-by: Jenkins Reviewed-by: Mike Kaganski <[email protected]> diff --git a/extensions/source/activex/so_activex.cxx b/extensions/source/activex/so_activex.cxx index 0f42e3969a4e..8d4575c02afd 100644 --- a/extensions/source/activex/so_activex.cxx +++ b/extensions/source/activex/so_activex.cxx @@ -110,8 +110,8 @@ namespace class Status { public: - explicit Status(bool bTrow) - : m_bThrow(bTrow) + explicit Status(bool bThrow) + : m_bThrow(bThrow) { } // used to check success of an operation, and update the status if it's still ERROR_SUCCESS
