mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-30 08:34:16 +01:00
fix blank dialog
This commit is contained in:
parent
4c693e0bb8
commit
a28cb9e878
1 changed files with 6 additions and 2 deletions
|
@ -98,8 +98,9 @@ BlankDlg(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
|
||||||
ceShowOrHide( hDlg, IDC_BPICK, XP_FALSE );
|
ceShowOrHide( hDlg, IDC_BPICK, XP_FALSE );
|
||||||
} else {
|
} else {
|
||||||
XP_ASSERT( bState->pi->why == PICK_FOR_BLANK );
|
XP_ASSERT( bState->pi->why == PICK_FOR_BLANK );
|
||||||
ceShowOrHide( hDlg, IDC_PICKALL, XP_FALSE );
|
|
||||||
ceShowOrHide( hDlg, IDC_CPICK, XP_FALSE );
|
ceShowOrHide( hDlg, IDC_CPICK, XP_FALSE );
|
||||||
|
ceShowOrHide( hDlg, IDC_PICKALL, XP_FALSE );
|
||||||
|
ceShowOrHide( hDlg, IDC_PICKMSG, XP_FALSE );
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -132,8 +133,11 @@ BlankDlg(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
|
||||||
#endif
|
#endif
|
||||||
case WM_COMMAND:
|
case WM_COMMAND:
|
||||||
id = LOWORD(wParam);
|
id = LOWORD(wParam);
|
||||||
if ( id == IDC_PICKALL ) {
|
if ( 0 ) {
|
||||||
|
#ifdef FEATURE_TRAY_EDIT
|
||||||
|
} else if ( id == IDC_PICKALL ) {
|
||||||
bState->result = -1;
|
bState->result = -1;
|
||||||
|
#endif
|
||||||
} else if ( id == IDOK ) {
|
} else if ( id == IDOK ) {
|
||||||
bState->result =
|
bState->result =
|
||||||
(XP_S16)SendDlgItemMessage( hDlg, BLANKFACE_LIST,
|
(XP_S16)SendDlgItemMessage( hDlg, BLANKFACE_LIST,
|
||||||
|
|
Loading…
Add table
Reference in a new issue