mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-09 23:08:05 +02:00
IDE: fixed build non win widgetsets under windows.
This commit is contained in:
parent
700a308afc
commit
2751fd6fe7
@ -72,7 +72,7 @@ uses
|
||||
FileUtil, LazFileUtils, LazUtilities, LazUTF8, UTF8Process,
|
||||
LConvEncoding, Laz2_XMLCfg, LazLoggerBase, LazLogger, LazFileCache, AvgLvlTree,
|
||||
GraphType, LazStringUtils, LazTracer,
|
||||
LCLExceptionStacktrace, {$IFDEF WINDOWS} Win32Proc, {$ENDIF}
|
||||
LCLExceptionStacktrace, {$IFDEF LCLWin} Win32Proc, {$ENDIF}
|
||||
// SynEdit
|
||||
SynEdit, AllSynEdit, SynEditKeyCmds, SynEditMarks, SynEditHighlighter,
|
||||
// BuildIntf
|
||||
@ -7595,7 +7595,7 @@ begin
|
||||
Process.SetRedirection(dtStdErr, FileErr, ARunMode.RedirectStdErr = rprOverwrite);
|
||||
end;
|
||||
|
||||
{$IFDEF MSWINDOWS}
|
||||
{$IFDEF LCLWin}
|
||||
if (WindowsVersion > wvUnknown) and (WindowsVersion <= wv7) then
|
||||
Process.ApplyWin7Fix;
|
||||
{$ENDIF}
|
||||
|
@ -40,7 +40,7 @@ interface
|
||||
uses
|
||||
Classes, SysUtils, process,
|
||||
// LCL
|
||||
Dialogs, {$IFDEF WINDOWS} Win32Proc, {$ENDIF}
|
||||
Dialogs, {$IFDEF LCLWin} Win32Proc, {$ENDIF}
|
||||
|
||||
// LazUtils
|
||||
FileUtil, UTF8Process, LazFileUtils, LazLoggerBase,
|
||||
@ -183,7 +183,7 @@ begin
|
||||
FProcess.SetRedirection(dtStdErr, FileNameStdErr, FileOverwriteStdErr);
|
||||
end;
|
||||
|
||||
{$IFDEF MSWINDOWS}
|
||||
{$IFDEF LCLWin}
|
||||
if (WindowsVersion > wvUnknown) and (WindowsVersion <= wv7) then
|
||||
FProcess.ApplyWin7Fix;
|
||||
{$ENDIF}
|
||||
|
Loading…
Reference in New Issue
Block a user