diff options
| author | Pietro Gagliardi <[email protected]> | 2014-08-30 14:33:55 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-08-30 14:33:55 -0400 |
| commit | a81fa141ed7bbaf7be2c7aad50d425a34b1c9dff (patch) | |
| tree | c4feab030d8305d67a0d26d18748444871908fe9 | |
| parent | da42b979e793c2ccaeccaff2977a425ebc2af4d5 (diff) | |
Demoted TODO to non-TODO.
| -rw-r--r-- | redo/basicctrls_windows.c | 4 |
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) |
