From 3c6237f4eb87b74c94fb99b3bab6d8dda7f6dede Mon Sep 17 00:00:00 2001 From: Mnikolenko Productengine Date: Tue, 6 Oct 2020 15:56:11 +0300 Subject: SL-14067 FIXED The 'Unable to Buy' (L$) error persists until relogin --- indra/newview/llcurrencyuimanager.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'indra/newview/llcurrencyuimanager.cpp') diff --git a/indra/newview/llcurrencyuimanager.cpp b/indra/newview/llcurrencyuimanager.cpp index df94e337da..2acddf0d26 100644 --- a/indra/newview/llcurrencyuimanager.cpp +++ b/indra/newview/llcurrencyuimanager.cpp @@ -603,6 +603,11 @@ bool LLCurrencyUIManager::bought() return impl.mBought; } +void LLCurrencyUIManager::clearError() +{ + return impl.clearError(); +} + bool LLCurrencyUIManager::hasError() { return impl.mError; -- cgit v1.3 From 838f49b7a5e8a1da48ee8952352c873f69630f48 Mon Sep 17 00:00:00 2001 From: Mnikolenko Productengine Date: Wed, 7 Oct 2020 15:18:57 +0300 Subject: SL-14067 minor cleanup --- indra/newview/llcurrencyuimanager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'indra/newview/llcurrencyuimanager.cpp') diff --git a/indra/newview/llcurrencyuimanager.cpp b/indra/newview/llcurrencyuimanager.cpp index 2acddf0d26..d4fc1fe64d 100644 --- a/indra/newview/llcurrencyuimanager.cpp +++ b/indra/newview/llcurrencyuimanager.cpp @@ -605,7 +605,7 @@ bool LLCurrencyUIManager::bought() void LLCurrencyUIManager::clearError() { - return impl.clearError(); + impl.clearError(); } bool LLCurrencyUIManager::hasError() -- cgit v1.3