diff options
author | fvogel <fvogelnew1@free.fr> | 2016-05-01 20:03:04 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2016-05-01 20:03:04 (GMT) |
commit | 09fba1aae3aed0ba4d73890c19fe4c867fce8f82 (patch) | |
tree | 1b64ab21b1403ee5f4037e73ab310526762fe2f6 /win | |
parent | a49d18f50fd597f7b77eae71f3df70469136f839 (diff) | |
parent | ede13558f13645c01b9dff12f05b15d6e0435995 (diff) | |
download | tk-09fba1aae3aed0ba4d73890c19fe4c867fce8f82.zip tk-09fba1aae3aed0ba4d73890c19fe4c867fce8f82.tar.gz tk-09fba1aae3aed0ba4d73890c19fe4c867fce8f82.tar.bz2 |
Merged core-8-6-branchtip_446_undodepth
Diffstat (limited to 'win')
-rw-r--r-- | win/tkWinDialog.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/win/tkWinDialog.c b/win/tkWinDialog.c index d7f63fb..d58bd52 100644 --- a/win/tkWinDialog.c +++ b/win/tkWinDialog.c @@ -3145,13 +3145,13 @@ HookProc( if (IsWindow(hwndCtrl)) { EnableWindow(hwndCtrl, FALSE); } - TkSendVirtualEvent(phd->parent, "TkFontchooserVisibility"); + TkSendVirtualEvent(phd->parent, "TkFontchooserVisibility", NULL); return 1; /* we handled the message */ } if (WM_DESTROY == msg) { phd->hwnd = NULL; - TkSendVirtualEvent(phd->parent, "TkFontchooserVisibility"); + TkSendVirtualEvent(phd->parent, "TkFontchooserVisibility", NULL); return 0; } @@ -3169,7 +3169,7 @@ HookProc( ApplyLogfont(phd->interp, phd->cmdObj, hdc, &lf); } if (phd && phd->parent) { - TkSendVirtualEvent(phd->parent, "TkFontchooserFontChanged"); + TkSendVirtualEvent(phd->parent, "TkFontchooserFontChanged", NULL); } return 1; } @@ -3481,7 +3481,7 @@ FontchooserShowCmd( ApplyLogfont(hdPtr->interp, hdPtr->cmdObj, hdc, &lf); } if (hdPtr->parent) { - TkSendVirtualEvent(hdPtr->parent, "TkFontchooserFontChanged"); + TkSendVirtualEvent(hdPtr->parent, "TkFontchooserFontChanged", NULL); } } Tcl_SetServiceMode(oldMode); |