| 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; |
| 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 |
|
|
| 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; |
| 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; |