Develop and Download Open Source Software

Browse Subversion Repository

Diff of /trunk/teraterm/ttpset/ttset.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2620 by doda, Tue Dec 2 00:53:27 2008 UTC revision 2628 by doda, Wed Dec 24 09:38:42 2008 UTC
# Line 1217  void FAR PASCAL ReadIniFile(PCHAR FName, Line 1217  void FAR PASCAL ReadIniFile(PCHAR FName,
1217          if (ts->PasteDialogSize.cy < 0)          if (ts->PasteDialogSize.cy < 0)
1218                  ts->PasteDialogSize.cy = 220;                  ts->PasteDialogSize.cy = 220;
1219    
1220            // Disable mouse event tracking when Control-Key is pressed.
1221            ts->DisableMouseTrackingByCtrl =
1222                    GetOnOff(Section, "DisableMouseTrackingByCtrl", FName, FALSE);
1223  }  }
1224    
1225  void FAR PASCAL WriteIniFile(PCHAR FName, PTTSet ts)  void FAR PASCAL WriteIniFile(PCHAR FName, PTTSet ts)
# Line 2038  void FAR PASCAL WriteIniFile(PCHAR FName Line 2041  void FAR PASCAL WriteIniFile(PCHAR FName
2041          // Size of paste confirm dialog          // Size of paste confirm dialog
2042          WriteInt2(Section, "PasteDialogSize", FName,          WriteInt2(Section, "PasteDialogSize", FName,
2043                    ts->PasteDialogSize.cx, ts->PasteDialogSize.cy);                    ts->PasteDialogSize.cx, ts->PasteDialogSize.cy);
2044    
2045            // Disable mouse event tracking when Control-Key is pressed.
2046            WriteOnOff(Section, "DisableMouseTrackingByCtrl", FName,
2047                       ts->DisableMouseTrackingByCtrl);
2048  }  }
2049    
2050  #define VTEditor "VT editor keypad"  #define VTEditor "VT editor keypad"

Legend:
Removed from v.2620  
changed lines
  Added in v.2628

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26