mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 11:18:10 +02:00
IDE, Install/Uninstall Packages dialog: display "selected for installation/uninstallation" package states in package info memo
git-svn-id: trunk@42796 -
This commit is contained in:
parent
0f05bac744
commit
39bc6e707c
@ -4195,6 +4195,8 @@ resourcestring
|
||||
// open installed packages dialog
|
||||
lisOIPFilename = 'Filename: %s';
|
||||
lisCurrentState = 'Current state: ';
|
||||
lisSelectedForInstallation = 'selected for installation';
|
||||
lisSelectedForUninstallation = 'selected for uninstallation';
|
||||
lisInstalled = 'installed';
|
||||
lisNotInstalled = 'not installed';
|
||||
lisOIPThisPackageIsInstalledButTheLpkFileWasNotFound = '%sThis package is '
|
||||
|
@ -693,9 +693,17 @@ begin
|
||||
|
||||
InfoStr:=lisCurrentState;
|
||||
if Info.Installed<>pitNope then
|
||||
AddState(lisInstalled)
|
||||
begin
|
||||
if PackageInInstallList(Info.ID.Name)=false then
|
||||
AddState(lisSelectedForUninstallation);
|
||||
AddState(lisInstalled);
|
||||
end
|
||||
else
|
||||
begin
|
||||
if PackageInInstallList(Info.ID.Name)=true then
|
||||
AddState(lisSelectedForInstallation);
|
||||
AddState(lisNotInstalled);
|
||||
end;
|
||||
if Info.Base then
|
||||
AddState(lisPckExplBase);
|
||||
AddState(LazPackageTypeIdents[Info.PkgType]);
|
||||
|
Loading…
Reference in New Issue
Block a user