mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 09:17:53 +02:00
ide fixed av in path editor dlg on replace on cocoa
This commit is contained in:
parent
15853ffffd
commit
fea93f0749
@ -26,7 +26,7 @@ uses
|
||||
LCLType, Forms, Controls, Buttons, StdCtrls, Dialogs, Menus, Graphics,
|
||||
ButtonPanel, Clipbrd,
|
||||
// LazUtils
|
||||
FileUtil, LazFileUtils, LazStringUtils, LazFileCache, LazUTF8,
|
||||
FileUtil, LazFileUtils, LazStringUtils, LazFileCache, LazUTF8, LazLoggerBase,
|
||||
// LazControls
|
||||
ShortPathEdit,
|
||||
// IdeIntf
|
||||
@ -265,10 +265,14 @@ begin
|
||||
end;
|
||||
|
||||
procedure TPathEditorDialog.ReplaceButtonClick(Sender: TObject);
|
||||
var
|
||||
i: Integer;
|
||||
begin
|
||||
with PathListBox do begin
|
||||
Items[ItemIndex]:=BaseRelative(DirectoryEdit.Text);
|
||||
Items.Objects[ItemIndex]:=PathMayExist(DirectoryEdit.Text);
|
||||
i:=ItemIndex;
|
||||
if i<0 then exit;
|
||||
Items[i]:=BaseRelative(DirectoryEdit.Text);
|
||||
Items.Objects[i]:=PathMayExist(DirectoryEdit.Text);
|
||||
UpdateButtons;
|
||||
end;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user