From 82c9cb60e4f3266356c711ca53d7d1b33f6d1007 Mon Sep 17 00:00:00 2001 From: AZero13 Date: Sat, 6 Dec 2025 14:56:37 -0500 Subject: [PATCH] Typo: CannotUseIndexVarInLimPoint displayed the wrong error message --- src/CalcViewModel/GraphingCalculator/EquationViewModel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CalcViewModel/GraphingCalculator/EquationViewModel.cpp b/src/CalcViewModel/GraphingCalculator/EquationViewModel.cpp index e7829c7571..f9b5c35de9 100644 --- a/src/CalcViewModel/GraphingCalculator/EquationViewModel.cpp +++ b/src/CalcViewModel/GraphingCalculator/EquationViewModel.cpp @@ -442,7 +442,7 @@ namespace CalculatorApp::ViewModel return resLoader->GetString(L"CannotUseIndexVarInOpLimits"); break; case (SyntaxErrorCode::CannotUseIndexVarInLimPoint): - return resLoader->GetString(L"Overflow"); + return resLoader->GetString(L"CannotUseIndexVarInLimPoint"); break; case (SyntaxErrorCode::CannotUseComplexInfinityInReal): return resLoader->GetString(L"CannotUseComplexInfinityInReal");