Develop and Download Open Source Software

Browse CVS Repository

Diff of /gikonavigoeson/gikonavi/Setting.pas

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

revision 1.117 by h677, Sun Feb 18 08:09:21 2007 UTC revision 1.118 by h677, Sun Feb 25 16:20:45 2007 UTC
# Line 445  type Line 445  type
445          FAddKeywordLink: Boolean;          FAddKeywordLink: Boolean;
446          //! dat置換を有効にする          //! dat置換を有効にする
447          FReplaceDat: Boolean;          FReplaceDat: Boolean;
448            //! sent.iniファイルのサイズ(単位MB)
449            FSentIniFileSize: Integer;
450    
451                  function GetMainCoolSet(Index: Integer): TCoolSet;                  function GetMainCoolSet(Index: Integer): TCoolSet;
452                  function GetBoardCoolSet(Index: Integer): TCoolSet;                  function GetBoardCoolSet(Index: Integer): TCoolSet;
# Line 800  type Line 802  type
802          property AddKeywordLink: Boolean read FAddKeywordLink write FAddKeywordLink;          property AddKeywordLink: Boolean read FAddKeywordLink write FAddKeywordLink;
803          //! datの置換を有効にするか          //! datの置換を有効にするか
804          property ReplaceDat: Boolean read FReplaceDat write FReplaceDat;          property ReplaceDat: Boolean read FReplaceDat write FReplaceDat;
805            //! sent.iniファイルのサイズ(単位MB)
806            property SentIniFileSize: Integer read FSentIniFileSize write FSentIniFileSize;
807    
808  end;  end;
809    
810    
# Line 1284  begin Line 1289  begin
1289          end else begin          end else begin
1290              FReplaceDat := ini.ReadBool('Thread', 'ReplaceDat', False);              FReplaceDat := ini.ReadBool('Thread', 'ReplaceDat', False);
1291          end;          end;
1292    
1293            FSentIniFileSize := ini.ReadInteger('Function', 'SentIniFileSize', 3);
1294    
1295                  ini.UpdateFile;                  ini.UpdateFile;
1296          finally          finally
1297                  ini.Free;                  ini.Free;
# Line 1663  begin Line 1671  begin
1671          ini.WriteBool('Function', 'LoopBrowserTabs', FLoopBrowserTabs);          ini.WriteBool('Function', 'LoopBrowserTabs', FLoopBrowserTabs);
1672          ini.WriteBool('Thread', 'AddKeywordLink', FAddKeywordLink);          ini.WriteBool('Thread', 'AddKeywordLink', FAddKeywordLink);
1673          ini.WriteBool('Thread', 'ReplaceDat', FReplaceDat);          ini.WriteBool('Thread', 'ReplaceDat', FReplaceDat);
1674            ini.WriteInteger('Function', 'SentIniFileSize', FSentIniFileSize);
1675                  ini.UpdateFile;                  ini.UpdateFile;
1676          finally          finally
1677                  ini.Free;                  ini.Free;

Legend:
Removed from v.1.117  
changed lines
  Added in v.1.118

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