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.115 by h677, Sun Dec 24 15:21:09 2006 UTC revision 1.116 by h677, Tue Feb 13 15:58:59 2007 UTC
# Line 441  type Line 441  type
441          FLoopBrowserTabs : Boolean;          FLoopBrowserTabs : Boolean;
442          //! 100レス表示の先頭表示レス数          //! 100レス表示の先頭表示レス数
443          FHeadResCount : Integer;          FHeadResCount : Integer;
444            //! 関連キーワード追加フラグ
445            FAddKeywordLink: Boolean;
446    
447                  function GetMainCoolSet(Index: Integer): TCoolSet;                  function GetMainCoolSet(Index: Integer): TCoolSet;
448                  function GetBoardCoolSet(Index: Integer): TCoolSet;                  function GetBoardCoolSet(Index: Integer): TCoolSet;
449                  function GetBrowserCoolSet(Index: Integer): TCoolSet;                  function GetBrowserCoolSet(Index: Integer): TCoolSet;
# Line 790  type Line 793  type
793          property LoopBrowserTabs : Boolean read FLoopBrowserTabs write FLoopBrowserTabs;          property LoopBrowserTabs : Boolean read FLoopBrowserTabs write FLoopBrowserTabs;
794          //! 100レス表示の先頭表示レス数          //! 100レス表示の先頭表示レス数
795          property HeadResCount : Integer read FHeadResCount write FHeadResCount;          property HeadResCount : Integer read FHeadResCount write FHeadResCount;
796            //! 関連キーワード追加フラグ
797            property AddKeywordLink: Boolean read FAddKeywordLink write FAddKeywordLink;
798  end;  end;
799    
800    
# Line 1262  begin Line 1267  begin
1267    
1268          FStoredTaskTray := ini.ReadBool('Function', 'StroedTaskTray', false);          FStoredTaskTray := ini.ReadBool('Function', 'StroedTaskTray', false);
1269          FLoopBrowserTabs := ini.ReadBool('Function', 'LoopBrowserTabs', false);          FLoopBrowserTabs := ini.ReadBool('Function', 'LoopBrowserTabs', false);
1270            FAddKeywordLink := ini.ReadBool('Thread', 'AddKeywordLink', false);
1271                  ini.UpdateFile;                  ini.UpdateFile;
1272          finally          finally
1273                  ini.Free;                  ini.Free;
# Line 1640  begin Line 1645  begin
1645    
1646          ini.WriteBool('Function', 'StroedTaskTray', FStoredTaskTray);          ini.WriteBool('Function', 'StroedTaskTray', FStoredTaskTray);
1647          ini.WriteBool('Function', 'LoopBrowserTabs', FLoopBrowserTabs);          ini.WriteBool('Function', 'LoopBrowserTabs', FLoopBrowserTabs);
1648            ini.WriteBool('Thread', 'AddKeywordLink', FAddKeywordLink);
1649                  ini.UpdateFile;                  ini.UpdateFile;
1650          finally          finally
1651                  ini.Free;                  ini.Free;

Legend:
Removed from v.1.115  
changed lines
  Added in v.1.116

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