mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-16 09:59:23 +02:00
IDE: make lisClear to be used around in IDE.
git-svn-id: trunk@36329 -
This commit is contained in:
parent
cce98eefb5
commit
8e71fa7c1a
@ -156,7 +156,7 @@ begin
|
|||||||
txtOutput.Lines.Clear;
|
txtOutput.Lines.Clear;
|
||||||
Caption:= lisMenuViewDebugOutput;
|
Caption:= lisMenuViewDebugOutput;
|
||||||
|
|
||||||
popClear.Caption:=lisUIDClear;
|
popClear.Caption:=lisClear;
|
||||||
popCopyAll.Caption:=lisCopyAllOutputClipboard;
|
popCopyAll.Caption:=lisCopyAllOutputClipboard;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
@ -55,6 +55,7 @@ resourcestring
|
|||||||
lisBtnReplace = '&Replace';
|
lisBtnReplace = '&Replace';
|
||||||
lisBtnDlgReplace = '&Replace ...';
|
lisBtnDlgReplace = '&Replace ...';
|
||||||
lisEdit = 'Edit';
|
lisEdit = 'Edit';
|
||||||
|
lisClear = 'Clear';
|
||||||
lisOpen = 'Open';
|
lisOpen = 'Open';
|
||||||
lisSave = 'Save';
|
lisSave = 'Save';
|
||||||
lisDlgSave = 'Save ...';
|
lisDlgSave = 'Save ...';
|
||||||
@ -3283,7 +3284,6 @@ resourcestring
|
|||||||
lisUIDType = 'Type:';
|
lisUIDType = 'Type:';
|
||||||
lisUIDinProject = 'in Project:';
|
lisUIDinProject = 'in Project:';
|
||||||
lisUIDIncludedBy = 'Included by:';
|
lisUIDIncludedBy = 'Included by:';
|
||||||
lisUIDClear = 'Clear';
|
|
||||||
lisUIDPathsReadOnly = 'Paths (Read Only)';
|
lisUIDPathsReadOnly = 'Paths (Read Only)';
|
||||||
lisUIDUnit = 'Unit';
|
lisUIDUnit = 'Unit';
|
||||||
lisUIDSize = 'Size:';
|
lisUIDSize = 'Size:';
|
||||||
|
@ -266,7 +266,7 @@ begin
|
|||||||
MessagesMenuRoot := RegisterIDEMenuRoot(MessagesMenuRootName);
|
MessagesMenuRoot := RegisterIDEMenuRoot(MessagesMenuRootName);
|
||||||
Path := MessagesMenuRoot.Name;
|
Path := MessagesMenuRoot.Name;
|
||||||
MsgQuickFixMenuSection := RegisterIDEMenuSection(Path, 'Quick Fix');
|
MsgQuickFixMenuSection := RegisterIDEMenuSection(Path, 'Quick Fix');
|
||||||
MsgClearMenuItem := RegisterIDEMenuCommand(Path, 'Clear', lisUIDClear);
|
MsgClearMenuItem := RegisterIDEMenuCommand(Path, 'Clear', lisClear);
|
||||||
MsgCopyMenuItem := RegisterIDEMenuCommand(Path, 'Copy selected',lisCopySelectedMessagesToClipboard);
|
MsgCopyMenuItem := RegisterIDEMenuCommand(Path, 'Copy selected',lisCopySelectedMessagesToClipboard);
|
||||||
MsgCopyAllMenuItem := RegisterIDEMenuCommand(Path, 'Copy all',lisCopyAllShownMessagesToClipboard);
|
MsgCopyAllMenuItem := RegisterIDEMenuCommand(Path, 'Copy all',lisCopyAllShownMessagesToClipboard);
|
||||||
MsgCopyAllAndHiddenMenuItem := RegisterIDEMenuCommand(Path,
|
MsgCopyAllAndHiddenMenuItem := RegisterIDEMenuCommand(Path,
|
||||||
|
Loading…
Reference in New Issue
Block a user