mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-08 02:19:57 +02:00
added lazdbexport-0.lpl
git-svn-id: trunk@16035 -
This commit is contained in:
parent
5014375f11
commit
75d4901a35
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -3622,6 +3622,7 @@ packager/globallinks/lazcustforms-0.lpl svneol=native#text/plain
|
||||
packager/globallinks/lazcustomform-0.lpl svneol=native#text/plain
|
||||
packager/globallinks/lazdaemon-0.lpl svneol=native#text/plain
|
||||
packager/globallinks/lazdatadict-0.lpl svneol=native#text/plain
|
||||
packager/globallinks/lazdbexport-0.lpl svneol=native#text/plain
|
||||
packager/globallinks/lazopenglcontext-0.lpl svneol=native#text/plain
|
||||
packager/globallinks/lazparadox-0.lpl svneol=native#text/plain
|
||||
packager/globallinks/lazreport-0.9.5.lpl svneol=native#text/plain
|
||||
|
@ -4,7 +4,7 @@
|
||||
<PathDelim Value="/"/>
|
||||
<Version Value="6"/>
|
||||
<General>
|
||||
<SessionStorage Value="InProjectDir"/>
|
||||
<SessionStorage Value="InIDEConfig"/>
|
||||
<MainUnit Value="0"/>
|
||||
<IconPath Value="./"/>
|
||||
<TargetFileExt Value=""/>
|
||||
@ -27,7 +27,6 @@
|
||||
<RequiredPackages Count="5">
|
||||
<Item1>
|
||||
<PackageName Value="lazdbexport"/>
|
||||
<MinVersion Major="1" Valid="True"/>
|
||||
</Item1>
|
||||
<Item2>
|
||||
<PackageName Value="LCL"/>
|
||||
|
@ -3459,6 +3459,7 @@ var
|
||||
i: integer;
|
||||
begin
|
||||
StrList.Sorted := True;
|
||||
//DebugLn(['AddList ',StrList.Text]);
|
||||
for i:=0 to StrList.Count-1 do
|
||||
Add(List, StrList[i]);
|
||||
StrList.Sorted := False;
|
||||
@ -3474,6 +3475,7 @@ begin
|
||||
SetLength(Dir, LastDelimiter(PathDelim,Dir));
|
||||
end else
|
||||
Dir := '';
|
||||
//DebugLn(['PopulateFileAndDirectoryLists ',Dir]);
|
||||
Text[1] := nil;
|
||||
gtk_clist_freeze(Dirs);
|
||||
gtk_clist_clear(Dirs);
|
||||
@ -3483,12 +3485,13 @@ begin
|
||||
Strlist.Add('..'+PathDelim);
|
||||
if FindFirst(AppendPathDelim(Dir)+GetAllFilesMask, faAnyFile and faDirectory,
|
||||
Info) = 0
|
||||
then
|
||||
then begin
|
||||
repeat
|
||||
if ((Info.Attr and faDirectory) = faDirectory) and (Info.Name <> '.')
|
||||
and (Info.Name <> '..') and (Info.Name<>'') then
|
||||
StrList.Add(AppendPathDelim(Info.Name));
|
||||
until FindNext(Info) <> 0;
|
||||
end;
|
||||
FindClose(Info);
|
||||
AddList(Dirs);
|
||||
// add required files
|
||||
|
2
packager/globallinks/lazdbexport-0.lpl
Normal file
2
packager/globallinks/lazdbexport-0.lpl
Normal file
@ -0,0 +1,2 @@
|
||||
$(LazarusDir)/components/dbexport/lazdbexport.lpk
|
||||
|
Loading…
Reference in New Issue
Block a user