refactor: unglob std::wstring

This commit is contained in:
Tropical
2026-03-08 22:43:43 +01:00
committed by JuiceyDev
parent c571014bc9
commit cff2fc5f44
581 changed files with 2156 additions and 2154 deletions
+4 -4
View File
@@ -12,7 +12,7 @@ private:
int y;
int width;
int height;
wstring value;
std::wstring value;
unsigned int maxLength;
int frame;
@@ -23,9 +23,9 @@ private:
Screen *screen;
public:
EditBox(Screen *screen, Font *font, int x, int y, int width, int height, const wstring& value);
void setValue(const wstring& value);
wstring getValue();
EditBox(Screen *screen, Font *font, int x, int y, int width, int height, const std::wstring& value);
void setValue(const std::wstring& value);
std::wstring getValue();
void tick();
void keyPressed(wchar_t ch, int eventKey);
void mouseClicked(int mouseX, int mouseY, int buttonNum);