Home | Info | Community | Development | myReactOS | Contact Us
[protected, virtual]
Reimplemented from Dialog.
Definition at line 250 of file settings.cpp.
{ if (code == BN_CLICKED) { switch(id) { case IDOK: { bool mdi = IsDlgButtonChecked(_hwnd, IDC_MDI)==BST_CHECKED; bool separateFolders = IsDlgButtonChecked(_hwnd, IDC_SEPARATE_SUBFOLDERS)==BST_CHECKED; XMLPos explorer_options = g_Globals.get_cfg("general/explorer"); XMLBoolRef(explorer_options, "mdi") = mdi; XMLBoolRef(explorer_options, "separate-folders") = separateFolders; } // fall through case IDCANCEL: EndDialog(_hwnd, id); break; } return 0; } return 1; }