mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 11:18:10 +02:00
ide: find/rename identifier: fixed error hint on keywords
This commit is contained in:
parent
4c647e3963
commit
73db35fc82
@ -2403,7 +2403,7 @@ end;
|
||||
function TCustomCodeTool.StringIsKeyWord(const Word: string): boolean;
|
||||
begin
|
||||
Result:=(Word<>'') and IsIdentStartChar[Word[1]]
|
||||
and WordIsKeyWordFuncList.DoItUpperCase(Word,1,length(Word));
|
||||
and WordIsKeyWordFuncList.DoItCaseInsensitive(Word);
|
||||
end;
|
||||
|
||||
procedure TCustomCodeTool.MoveCursorToNodeStart(ANode: TCodeTreeNode);
|
||||
|
@ -1064,17 +1064,18 @@ begin
|
||||
if IsNodeInvalid('TFindRenameIdentifierDialog.ValidateNewName') then exit;
|
||||
Err:='';
|
||||
FNewIdentifier:=NewEdit.Text;
|
||||
if (FNode<>nil)
|
||||
and (FNode.Desc in [ctnProgram..ctnUnit,ctnUseUnitNamespace,ctnUseUnitClearName]) then
|
||||
ok:=IsValidDottedIdent(FNewIdentifier) //can be dotted
|
||||
else
|
||||
ok:=IsValidDottedIdent(FNewIdentifier,false);//not dotted for sure
|
||||
|
||||
ok:=IsValidDottedIdent(FNewIdentifier);
|
||||
if not ok then begin
|
||||
if FNewIdentifier='' then
|
||||
Err:=lisIdentifierCannotBeEmpty
|
||||
else
|
||||
Err:= format(lisIdentifierIsInvalid,[FNewIdentifier]);
|
||||
end else if not (FNode.Desc in [ctnProgram..ctnUnit,ctnUseUnit,
|
||||
ctnUseUnitNamespace,ctnUseUnitClearName])
|
||||
and (Pos('.',FNewIdentifier)>0) then
|
||||
begin
|
||||
ok:=false;
|
||||
Err:=Format(lisIdentifierCannotBeDotted,[FNewIdentifier]);
|
||||
end;
|
||||
|
||||
if ok and (FTool<>nil) then begin
|
||||
|
Loading…
Reference in New Issue
Block a user