updated lpl

git-svn-id: trunk@30913 -
This commit is contained in:
mattias 2011-05-26 11:00:10 +00:00
parent 3d778b6492
commit 169079452b
6 changed files with 4 additions and 3 deletions

2
.gitattributes vendored
View File

@ -5748,7 +5748,7 @@ packager/globallinks/appforms-1.lpl svneol=native#text/plain
packager/globallinks/chmhelppkg-0.1.lpl svneol=native#text/plain
packager/globallinks/cocoa_pkg-0.lpl svneol=native#text/plain
packager/globallinks/codetools-1.0.1.lpl svneol=native#text/plain
packager/globallinks/cody-1.0.1.lpl svneol=native#text/plain
packager/globallinks/cody-1.1.lpl svneol=native#text/plain
packager/globallinks/customdrawn-0.lpl svneol=native#text/plain
packager/globallinks/dbflaz-0.1.1.lpl svneol=native#text/plain
packager/globallinks/designbaseclassdemopkg-0.lpl svneol=native#text/plain

View File

@ -18,6 +18,7 @@
</CompilerOptions>
<Description Value="IDE extensions using Codetools."/>
<License Value="GPL2"/>
<Version Major="1" Minor="1"/>
<Files Count="9">
<Item1>
<Filename Value="ppulistdlg.pas"/>

View File

@ -21,6 +21,7 @@
</CompilerOptions>
<Description Value="A lazarus packagemanager based on FPC's fppkg"/>
<License Value="GPL"/>
<Version Release="1"/>
<Files Count="1">
<Item1>
<Filename Value="lazpackagemanagerintf.pas"/>

View File

@ -586,7 +586,7 @@ begin
if Source is TLazPackageID then
begin
aSource:=TLazPackageID(Source);
aSource.FVersion.Assign(FVersion);
FVersion.Assign(aSource.Version);
Name:=aSource.FName;
UpdateIDAsString;
end else

View File

@ -68,7 +68,6 @@ begin
DescriptionMemo.Text := LazPackage.Description;
AuthorEdit.Text := LazPackage.Author;
LicenseMemo.Text := LazPackage.License;
//debugln(['TPackageDescriptionOptionsFrame.ReadSettings ',lazpa]);
VersionMajorSpinEdit.Value := LazPackage.Version.Major;
VersionMinorSpinEdit.Value := LazPackage.Version.Minor;
VersionReleaseSpinEdit.Value := LazPackage.Version.Release;