summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-08-30 14:33:55 -0400
committerPietro Gagliardi <[email protected]>2014-08-30 14:33:55 -0400
commita81fa141ed7bbaf7be2c7aad50d425a34b1c9dff (patch)
treec4feab030d8305d67a0d26d18748444871908fe9
parentda42b979e793c2ccaeccaff2977a425ebc2af4d5 (diff)
Demoted TODO to non-TODO.
-rw-r--r--redo/basicctrls_windows.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/redo/basicctrls_windows.c b/redo/basicctrls_windows.c
index 7481522..8947187 100644
--- a/redo/basicctrls_windows.c
+++ b/redo/basicctrls_windows.c
@@ -111,7 +111,9 @@ void textfieldSetAndShowInvalidBalloonTip(HWND hwnd, WCHAR *text)
ZeroMemory(&ti, sizeof (EDITBALLOONTIP));
ti.cbStruct = sizeof (EDITBALLOONTIP);
- ti.pszTitle = L"Invalid Input"; // TODO this is necessary for the icon to show up; figure out some language-neutral thing
+ // this is required to show the error icon
+ // this probably should be localized...
+ ti.pszTitle = L"Invalid Input";
ti.pszText = text;
ti.ttiIcon = TTI_ERROR;
if (SendMessageW(hwnd, EM_SHOWBALLOONTIP, 0, (LPARAM) (&ti)) == FALSE)