Changeset 30 for trunk/settings.cpp
- Timestamp:
- Mar 13, 2018, 11:51:18 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/settings.cpp
r28 r30 92 92 93 93 Settings :: Settings (VOID) : 94 ththSettings(apse, "gotcha.ini", L_PROFILEVERSION) 94 #ifdef _QUIET_ 95 //#if 1 96 ththSettings(apse, "gotchaq.ini", L_PROFILEVERSION) 97 #else 98 ththSettings(apse, "gotcha.ini", L_PROFILEVERSION) 99 #endif 95 100 { 96 101 if( ! QueryFlag( SEI_UPDATE178DONE ) ) { … … 213 218 MPFROMLONG (idPage[i]), MPFROMP (pszPageTab[i])); 214 219 } 215 //#ifndef _QUIET_216 #if 0220 #ifndef _QUIET_ 221 //#if 0 217 222 // open and assign dialogs to pages 218 223 hwndPage[0] = WinLoadDlg (hwndNB, hwndNB, (PFNWP) Page1Procedure, 219 224 GETMODULE, ID_DLG_SETTINGSPAGE1, this); 220 hwndPage[1] = WinLoadDlg (hwndNB, hwndNB, (PFNWP) WindowProcedure, //Page2Procedure,225 hwndPage[1] = WinLoadDlg (hwndNB, hwndNB, (PFNWP) Page2Procedure, 221 226 GETMODULE, ID_DLG_SETTINGSPAGE2, this); 222 227 hwndPage[2] = WinLoadDlg (hwndNB, hwndNB, (PFNWP) Page3Procedure, … … 492 497 WinSendDlgItemMsg( hwnd, WID_LB_FILEFORMAT, LM_SELECTITEM, 493 498 MPFROMSHORT(0), MPFROMSHORT(TRUE) ); 494 //#ifdef _QUIET_495 #if 1499 #ifdef _QUIET_ 500 //#if 1 496 501 // set play sound button 497 502 pset->AdjustButton (hwnd, WID_CB_DOSOUND, … … 539 544 else 540 545 pset->SetFileSaveStyle (FSS_PROMPT); 541 //#ifdef _QUIET_542 #if 1546 #ifdef _QUIET_ 547 //#if 1 543 548 pset->DoSound(WinQueryButtonCheckstate 544 549 (hwnd, WID_CB_DOSOUND)); … … 640 645 pset->AdjustButton (hwnd, WID_CB_SSWALWAYSONTOP, 641 646 pset->SSWAlwaysOnTop ()); 642 //#ifdef _QUIET_643 #if 1647 #ifdef _QUIET_ 648 //#if 1 644 649 pset->AdjustButton (hwnd, WID_CB_SERIALCAPTURE, 645 650 pset->SerialCapture ()); … … 695 700 LogDebug( "Page2Procedure: start UM_ADJUST" ); 696 701 #endif 697 //#ifndef _QUIET_698 #if 0702 #ifndef _QUIET_ 703 //#if 0 699 704 // query state of checkbuttons and set flags 700 705 pset->SSWHide(WinQueryButtonCheckstate(hwnd, WID_CB_SSWHIDE)); … … 730 735 else 731 736 pset->SetSSWCaptureType (CAP_SCREEN); 732 //#ifdef _QUITE_733 #if 1737 #ifdef _QUIET_ 738 //#if 1 734 739 // delay time 735 740 ULONG ul; … … 1126 1131 1127 1132 ResourceString::Module(g_hmod); 1128 //#ifdef _QUIET_1129 #if 11133 #ifdef _QUIET_ 1134 //#if 1 1130 1135 pszPageTab[0] = RSTR (IDS_MAINWIN); 1131 1136 pszPageTab[1] = RSTR (IDS_PAGESAVE); … … 1150 1155 // set this to some default, as we must open the settings dialog for 1151 1156 // selecting a language 1152 //#ifdef _QUIET_1153 #if 11157 #ifdef _QUIET_ 1158 //#if 1 1154 1159 pszPageTab[0] = RSTR (IDS_MAINWIN); 1155 1160 pszPageTab[1] = RSTR (IDS_PAGESAVE); … … 1181 1186 hdir = HDIR_CREATE; 1182 1187 c = 1; 1183 rc = DosFindFirst ("*.dll", &hdir, fl, &findbuf, 1188 #ifdef _QUIET_ 1189 rc = DosFindFirst ("goqre*.dll", &hdir, fl, &findbuf, 1184 1190 sizeof (findbuf), &c, FIL_STANDARD); 1191 #else 1192 rc = DosFindFirst ("gotre*.dll", &hdir, fl, &findbuf, 1193 sizeof (findbuf), &c, FIL_STANDARD); 1194 #endif 1185 1195 while (!rc) 1186 1196 {
Note:
See TracChangeset
for help on using the changeset viewer.