Browse CVS Repository
Diff of /gikonavigoeson/gikonavi/Setting.pas
Parent Directory
| Revision Log
| Revision Graph
| Patch
| 2160 |
begin |
begin |
| 2161 |
|
|
| 2162 |
FUseCSS := value; |
FUseCSS := value; |
| 2163 |
|
// Windows的にファイルパスの大文字小文字の違いは無視されるので、 |
| 2164 |
|
// ココでの判定でも大文字小文字の違いは無視する。 |
| 2165 |
FUseSkin := |
FUseSkin := |
| 2166 |
UseCSS and |
UseCSS and |
| 2167 |
(Pos( GetSkinDir, CSSFileName ) > 0) and |
(Pos( AnsiLowerCase(GetSkinDir), AnsiLowerCase(CSSFileName) ) > 0) and |
| 2168 |
FileExists( GetSkinHeaderFileName ); |
FileExists( GetSkinHeaderFileName ); |
| 2169 |
|
|
| 2170 |
end; |
end; |
| 2173 |
begin |
begin |
| 2174 |
|
|
| 2175 |
FCSSFileName := fileName; |
FCSSFileName := fileName; |
| 2176 |
|
// Windows的にファイルパスの大文字小文字の違いは無視されるので、 |
| 2177 |
|
// ココでの判定でも大文字小文字の違いは無視する。 |
| 2178 |
FUseSkin := |
FUseSkin := |
| 2179 |
UseCSS and |
UseCSS and |
| 2180 |
(Pos( GetSkinDir, CSSFileName ) > 0) and |
(Pos( AnsiLowerCase(GetSkinDir), AnsiLowerCase(CSSFileName) ) > 0) and |
| 2181 |
FileExists( GetSkinHeaderFileName ); |
FileExists( GetSkinHeaderFileName ); |
| 2182 |
|
|
| 2183 |
end; |
end; |
|
|
Legend:
| Removed from v.1.108 |
|
| changed lines |
| |
Added in v.1.109 |
|
|
|