diff options
author | graemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2007-08-16 14:22:17 +0000 |
---|---|---|
committer | graemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2007-08-16 14:22:17 +0000 |
commit | 3dd56613512accb42a9cb8a986bad0e8f2635eae (patch) | |
tree | c12b50c0f6783053355b098ad9893b7db8bbe6b3 /src/corelib/gdi | |
parent | ba207d0e5ca65ab32a5435143aaa24d57f19d89a (diff) | |
download | fpGUI-3dd56613512accb42a9cb8a986bad0e8f2635eae.tar.xz |
* Added images, Owner, Group and file attribute support to TfpgFileGrid.
I still need to try and get rid of the IFDEF's.
* New executable image added to standard images.
* IsSymLink help function added to gfx_utils unit.
* Extended the FileGrid example project a bit more.
Diffstat (limited to 'src/corelib/gdi')
-rw-r--r-- | src/corelib/gdi/fpgfx_package.lpk | 2 | ||||
-rw-r--r-- | src/corelib/gdi/gfx_utils.pas | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/corelib/gdi/fpgfx_package.lpk b/src/corelib/gdi/fpgfx_package.lpk index 8182a71d..2e5190a7 100644 --- a/src/corelib/gdi/fpgfx_package.lpk +++ b/src/corelib/gdi/fpgfx_package.lpk @@ -8,7 +8,7 @@ <Version Value="5"/>
<PathDelim Value="\"/>
<SearchPaths>
- <IncludeFiles Value="..\..\"/>
+ <IncludeFiles Value="..\"/>
<OtherUnitFiles Value="..\;..\..\gui\"/>
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/>
</SearchPaths>
diff --git a/src/corelib/gdi/gfx_utils.pas b/src/corelib/gdi/gfx_utils.pas index 70078859..f5822fc6 100644 --- a/src/corelib/gdi/gfx_utils.pas +++ b/src/corelib/gdi/gfx_utils.pas @@ -38,6 +38,11 @@ begin } end; +function FileIsSymlink(const AFilename: string): boolean; +begin + Result := False; +end; + end. |