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.119 by h677, Sun Mar 11 12:03:30 2007 UTC revision 1.120 by h677, Sat Apr 14 16:52:57 2007 UTC
# Line 447  type Line 447  type
447          FReplaceDat: Boolean;          FReplaceDat: Boolean;
448          //! sent.iniファイルのサイズ(単位MB)          //! sent.iniファイルのサイズ(単位MB)
449          FSentIniFileSize: Integer;          FSentIniFileSize: Integer;
450            //! リンクURL取得の対象拡張子
451            FExtList: String;
452                  function GetMainCoolSet(Index: Integer): TCoolSet;                  function GetMainCoolSet(Index: Integer): TCoolSet;
453                  function GetBoardCoolSet(Index: Integer): TCoolSet;                  function GetBoardCoolSet(Index: Integer): TCoolSet;
454                  function GetBrowserCoolSet(Index: Integer): TCoolSet;                  function GetBrowserCoolSet(Index: Integer): TCoolSet;
# Line 804  type Line 805  type
805          property ReplaceDat: Boolean read FReplaceDat write FReplaceDat;          property ReplaceDat: Boolean read FReplaceDat write FReplaceDat;
806          //! sent.iniファイルのサイズ(単位MB)          //! sent.iniファイルのサイズ(単位MB)
807          property SentIniFileSize: Integer read FSentIniFileSize write FSentIniFileSize;          property SentIniFileSize: Integer read FSentIniFileSize write FSentIniFileSize;
808            //! リンクURL取得の対象拡張子
809            property ExtList: String read FExtList write FExtList;
810    
811  end;  end;
812    
# Line 1291  begin Line 1294  begin
1294          end;          end;
1295    
1296          FSentIniFileSize := ini.ReadInteger('Function', 'SentIniFileSize', 3);          FSentIniFileSize := ini.ReadInteger('Function', 'SentIniFileSize', 3);
1297            FExtList := ini.ReadString('Function', 'ExtList', '*.gif;*.jpg;*.jpeg;*.png;*.zip;*.rar');
1298                  ini.UpdateFile;                  ini.UpdateFile;
1299          finally          finally
1300                  ini.Free;                  ini.Free;
# Line 1672  begin Line 1675  begin
1675          ini.WriteBool('Thread', 'AddKeywordLink', FAddKeywordLink);          ini.WriteBool('Thread', 'AddKeywordLink', FAddKeywordLink);
1676          ini.WriteBool('Thread', 'ReplaceDat', FReplaceDat);          ini.WriteBool('Thread', 'ReplaceDat', FReplaceDat);
1677          ini.WriteInteger('Function', 'SentIniFileSize', FSentIniFileSize);          ini.WriteInteger('Function', 'SentIniFileSize', FSentIniFileSize);
1678            ini.WriteString('Function', 'ExtList', FExtList);
1679                  ini.UpdateFile;                  ini.UpdateFile;
1680          finally          finally
1681                  ini.Free;                  ini.Free;

Legend:
Removed from v.1.119  
changed lines
  Added in v.1.120

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