mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-14 01:59:16 +02:00
IDE: "Rename Identifier": show replaced lines in result. Changed default
git-svn-id: trunk@39574 -
This commit is contained in:
parent
17e5398d46
commit
e64277d061
@ -293,7 +293,7 @@ begin
|
|||||||
Rename:=XMLConfig.GetValue(Path+'Rename/Value',false);
|
Rename:=XMLConfig.GetValue(Path+'Rename/Value',false);
|
||||||
RenameTo:=XMLConfig.GetValue(Path+'Rename/Identifier','');
|
RenameTo:=XMLConfig.GetValue(Path+'Rename/Identifier','');
|
||||||
SearchInComments:=XMLConfig.GetValue(Path+'SearchInComments/Value',true);
|
SearchInComments:=XMLConfig.GetValue(Path+'SearchInComments/Value',true);
|
||||||
RenameShowResult:=XMLConfig.GetValue(Path+'RenameShowResult/Value',true);
|
RenameShowResult:=XMLConfig.GetValue(Path+'RenameShowResult/Value',false);
|
||||||
Scope:=FindRenameScopeNameToScope(XMLConfig.GetValue(Path+'Scope/Value',
|
Scope:=FindRenameScopeNameToScope(XMLConfig.GetValue(Path+'Scope/Value',
|
||||||
FindRenameScopeNames[frAllOpenProjectsAndPackages]));
|
FindRenameScopeNames[frAllOpenProjectsAndPackages]));
|
||||||
LoadStringList(XMLConfig,ExtraFiles,Path+'ExtraFiles/');
|
LoadStringList(XMLConfig,ExtraFiles,Path+'ExtraFiles/');
|
||||||
@ -307,7 +307,7 @@ begin
|
|||||||
XMLConfig.SetDeleteValue(Path+'Rename/Value',Rename,false);
|
XMLConfig.SetDeleteValue(Path+'Rename/Value',Rename,false);
|
||||||
XMLConfig.SetDeleteValue(Path+'Rename/Identifier',RenameTo,'');
|
XMLConfig.SetDeleteValue(Path+'Rename/Identifier',RenameTo,'');
|
||||||
XMLConfig.SetDeleteValue(Path+'SearchInComments/Value',SearchInComments,true);
|
XMLConfig.SetDeleteValue(Path+'SearchInComments/Value',SearchInComments,true);
|
||||||
XMLConfig.SetDeleteValue(Path+'RenameShowResult/Value',RenameShowResult,true);
|
XMLConfig.SetDeleteValue(Path+'RenameShowResult/Value',RenameShowResult,false);
|
||||||
XMLConfig.SetDeleteValue(Path+'Scope/Value',FindRenameScopeNames[Scope],
|
XMLConfig.SetDeleteValue(Path+'Scope/Value',FindRenameScopeNames[Scope],
|
||||||
FindRenameScopeNames[frAllOpenProjectsAndPackages]);
|
FindRenameScopeNames[frAllOpenProjectsAndPackages]);
|
||||||
SaveStringList(XMLConfig,ExtraFiles,Path+'ExtraFiles/');
|
SaveStringList(XMLConfig,ExtraFiles,Path+'ExtraFiles/');
|
||||||
|
Loading…
Reference in New Issue
Block a user