diff options
author | Loïc Blot <nerzhul@users.noreply.github.com> | 2017-04-21 10:06:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-21 10:06:08 +0200 |
commit | 370354cc87937bbfb6f24aa062966af8e039cec0 (patch) | |
tree | e0400c3b3c63d3e8e8b22c81e40a9cabe2d1b5b1 /src/guiEngine.cpp | |
parent | de5ecc9fa31d557e2d0ca638b1c98435707046b9 (diff) | |
download | minetest-370354cc87937bbfb6f24aa062966af8e039cec0.tar.gz minetest-370354cc87937bbfb6f24aa062966af8e039cec0.tar.bz2 minetest-370354cc87937bbfb6f24aa062966af8e039cec0.zip |
Fix various performance issues reported by cppcheck (#5628)
* Also remove 1 non declared but defined functions
Diffstat (limited to 'src/guiEngine.cpp')
-rw-r--r-- | src/guiEngine.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/guiEngine.cpp b/src/guiEngine.cpp index e0ee00ad6..ebc4aac44 100644 --- a/src/guiEngine.cpp +++ b/src/guiEngine.cpp @@ -60,7 +60,7 @@ void TextDestGuiEngine::gotText(const StringMap &fields) } /******************************************************************************/ -void TextDestGuiEngine::gotText(std::wstring text) +void TextDestGuiEngine::gotText(const std::wstring &text) { m_engine->getScriptIface()->handleMainMenuEvent(wide_to_utf8(text)); } @@ -540,7 +540,7 @@ bool GUIEngine::setTexture(texture_layer layer, std::string texturepath, } /******************************************************************************/ -bool GUIEngine::downloadFile(std::string url, std::string target) +bool GUIEngine::downloadFile(const std::string &url, const std::string &target) { #if USE_CURL std::ofstream target_file(target.c_str(), std::ios::out | std::ios::binary); |