summaryrefslogtreecommitdiff
path: root/redo/basicctrls_windows.c
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-08-25 23:35:20 -0400
committerPietro Gagliardi <[email protected]>2014-08-25 23:35:20 -0400
commite7490ce49b113f4d1877de8f5ee4b40b183fbabf (patch)
tree4b0323001c929f690bdc137d03510eebfe5958ef /redo/basicctrls_windows.c
parent3648d379c69af6d2c470bd6991128bd61fb0c2d6 (diff)
Added link to info in dialog_windows.c; removed TODOs in area_window.c and basicctrls_windows.c that I decided were fine as they were; more TODOs otherwise.
Diffstat (limited to 'redo/basicctrls_windows.c')
-rw-r--r--redo/basicctrls_windows.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/redo/basicctrls_windows.c b/redo/basicctrls_windows.c
index 4c5a129..7481522 100644
--- a/redo/basicctrls_windows.c
+++ b/redo/basicctrls_windows.c
@@ -111,7 +111,7 @@ void textfieldSetAndShowInvalidBalloonTip(HWND hwnd, WCHAR *text)
ZeroMemory(&ti, sizeof (EDITBALLOONTIP));
ti.cbStruct = sizeof (EDITBALLOONTIP);
- ti.pszTitle = L"Invalid Input"; // TODO verify
+ ti.pszTitle = L"Invalid Input"; // TODO this is necessary for the icon to show up; figure out some language-neutral thing
ti.pszText = text;
ti.ttiIcon = TTI_ERROR;
if (SendMessageW(hwnd, EM_SHOWBALLOONTIP, 0, (LPARAM) (&ti)) == FALSE)