refactor: unglob std::wstring

This commit is contained in:
Tropical
2026-03-06 11:50:22 -06:00
parent 41db813a6d
commit cdc08700e4
581 changed files with 2156 additions and 2154 deletions

View File

@@ -9,14 +9,14 @@ protected:
int h;
public:
int x, y;
wstring msg;
std::wstring msg;
int id;
bool active;
bool visible;
Button(int id, int x, int y, const wstring& msg);
Button(int id, int x, int y, int w, int h, const wstring& msg);
void init(int id, int x, int y, int w, int h, const wstring& msg); // 4J - added
Button(int id, int x, int y, const std::wstring& msg);
Button(int id, int x, int y, int w, int h, const std::wstring& msg);
void init(int id, int x, int y, int w, int h, const std::wstring& msg); // 4J - added
protected:
virtual int getYImage(bool hovered);
public: