mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-26 14:53:50 +02:00
IDE: less verbose
git-svn-id: trunk@64220 -
This commit is contained in:
parent
be50b1d99c
commit
66a905ae85
@ -274,9 +274,13 @@ end;
|
||||
SetPrimaryConfigPath procedure
|
||||
---------------------------------------------------------------------------}
|
||||
procedure SetPrimaryConfigPath(const NewValue: String);
|
||||
var
|
||||
NewExpValue: String;
|
||||
begin
|
||||
debugln('SetPrimaryConfigPath NewValue="',UTF8ToConsole(NewValue),'" -> "',UTF8ToConsole(ExpandFileNameUTF8(NewValue)),'"');
|
||||
PrimaryConfigPath := ChompPathDelim(ExpandFileNameUTF8(NewValue));
|
||||
NewExpValue:=ChompPathDelim(ExpandFileNameUTF8(NewValue));
|
||||
if NewExpValue=PrimaryConfigPath then exit;
|
||||
debugln('SetPrimaryConfigPath NewValue="',UTF8ToConsole(NewValue),'" -> "',UTF8ToConsole(NewExpValue),'"');
|
||||
PrimaryConfigPath := NewExpValue;
|
||||
end;
|
||||
|
||||
{---------------------------------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user