IDE: fixed non unix compilation

git-svn-id: trunk@16127 -
This commit is contained in:
mattias 2008-08-18 18:33:02 +00:00
parent e711e12a9a
commit dcc2d5af64
2 changed files with 6 additions and 6 deletions

View File

@ -178,12 +178,6 @@ begin
if Find('iexplore.exe',Browser) then exit; if Find('iexplore.exe',Browser) then exit;
end; end;
procedure LazConfSubstituteMacros(var s: string);
begin
if Assigned(LazConfMacroFunc) then
LazConfMacroFunc(s);
end;
{--------------------------------------------------------------------------- {---------------------------------------------------------------------------
procedure InternalInit; procedure InternalInit;
---------------------------------------------------------------------------} ---------------------------------------------------------------------------}

View File

@ -136,6 +136,12 @@ implementation
{$I lazconf.inc} {$I lazconf.inc}
procedure LazConfSubstituteMacros(var s: string);
begin
if Assigned(LazConfMacroFunc) then
LazConfMacroFunc(s);
end;
{--------------------------------------------------------------------------- {---------------------------------------------------------------------------
function CreateCompilerTestPascalFilename: string; function CreateCompilerTestPascalFilename: string;
---------------------------------------------------------------------------} ---------------------------------------------------------------------------}