Changeset 767 for trunk/src/kernel32/console.cpp
- Timestamp:
- Sep 1, 1999, 12:45:08 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/console.cpp
r705 r767 1 /* $Id: console.cpp,v 1.1 2 1999-08-26 12:55:35 sandervlExp $ */1 /* $Id: console.cpp,v 1.13 1999-08-31 22:44:33 phaller Exp $ */ 2 2 3 3 /* … … 443 443 ConsoleGlobals.hConsoleBufferDefault = INVALID_HANDLE_VALUE; 444 444 ConsoleGlobals.hConsoleBuffer = INVALID_HANDLE_VALUE; 445 446 447 // defaults are effective, try to read and apply stored properties 448 if (ConsolePropertyLoad(&ConsoleGlobals.Options) == NO_ERROR) 449 ConsolePropertyApply(&ConsoleGlobals.Options); 445 450 446 451 … … 1100 1105 DLG_CONSOLE_PROPERTIES, 1101 1106 (PVOID)&ConsoleGlobals.Options); 1107 switch (ulResult) 1108 { 1109 case ID_BTN_SAVE: 1110 ConsolePropertySave(&ConsoleGlobals.Options); 1111 ConsolePropertyApply(&ConsoleGlobals.Options); 1112 break; 1113 1114 case ID_BTN_APPLY: 1115 ConsolePropertyApply(&ConsoleGlobals.Options); 1116 break; 1117 1118 default: break; 1119 } 1120 1102 1121 return (MPARAM) FALSE; 1103 1122 }
Note:
See TracChangeset
for help on using the changeset viewer.