Skip to content

Commit 079ccd9

Browse files
author
ddbb07
committed
Use std::string instead of UString
1 parent 243b087 commit 079ccd9

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

apps/openmw/mwgui/weightedsearch.hpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,11 @@
77
#include <string>
88
#include <vector>
99

10-
#include <MyGUI_UString.h>
11-
1210
#include <components/misc/strings/lower.hpp>
1311

1412
namespace MWGui
1513
{
16-
inline std::vector<std::string> generatePatternArray(const MyGUI::UString& inputString)
14+
inline std::vector<std::string> generatePatternArray(const std::string& inputString)
1715
{
1816
if (inputString.empty() || inputString.find_first_not_of(" ") == std::string::npos)
1917
return std::vector<std::string>();

0 commit comments

Comments
 (0)