From 595037b3016ad1e31ca9c33d139977a0b874cac6 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Sun, 8 May 2022 14:22:11 +0200 Subject: [PATCH] Fixed some minor function argument name mismatches. --- es-core/src/utils/StringUtil.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/es-core/src/utils/StringUtil.h b/es-core/src/utils/StringUtil.h index 8fbd6af0f..00aa3e5f1 100644 --- a/es-core/src/utils/StringUtil.h +++ b/es-core/src/utils/StringUtil.h @@ -30,8 +30,8 @@ namespace Utils std::string toCapitalized(const std::string& stringArg); std::string trim(const std::string& stringArg); std::string replace(const std::string& stringArg, - const std::string& replace, - const std::string& with); + const std::string& from, + const std::string& to); std::wstring stringToWideString(const std::string& stringArg); std::string wideStringToString(const std::wstring& stringArg); bool startsWith(const std::string& stringArg, const std::string& start);