From bb4e3c75621c9a35355087e9b787d3c88fcde1a9 Mon Sep 17 00:00:00 2001 From: Digital Artifex <7929434+DigitalArtifex@users.noreply.github.com> Date: Sat, 15 Aug 2026 09:56:08 -0400 Subject: [PATCH] Added missing setErrorString --- KomplexHubPlugin/common/qwallet.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/KomplexHubPlugin/common/qwallet.cpp b/KomplexHubPlugin/common/qwallet.cpp index fd8f08e..194a6bd 100644 --- a/KomplexHubPlugin/common/qwallet.cpp +++ b/KomplexHubPlugin/common/qwallet.cpp @@ -133,3 +133,8 @@ auto QWallet::errorString() const -> const QString & { return m_errorString; } + +auto QWallet::setErrorString(const QString &errorString) const -> void +{ + m_errorString = errorString; +}