mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-08 09:38:12 +02:00
IDE: renamed AdvancedIPC to LazAdvancedIPC to prevent file duplicate errors with FPC 3.1.1. Issue #28999. Patch by Do-wan Kim
git-svn-id: trunk@50318 -
This commit is contained in:
parent
047ef72501
commit
4d88aa972e
2
.gitattributes
vendored
2
.gitattributes
vendored
@ -5614,7 +5614,6 @@ ide/abstractsmethodsdlg.lfm svneol=native#text/plain
|
||||
ide/abstractsmethodsdlg.pas svneol=native#text/plain
|
||||
ide/addtoprojectdlg.lfm svneol=native#text/plain
|
||||
ide/addtoprojectdlg.pas svneol=native#text/pascal
|
||||
ide/advancedipc.pp svneol=native#text/pascal
|
||||
ide/advhistorylist.pas svneol=native#text/pascal
|
||||
ide/allcompileroptions.lfm svneol=native#text/plain
|
||||
ide/allcompileroptions.pas svneol=native#text/pascal
|
||||
@ -5921,6 +5920,7 @@ ide/keymapschemedlg.lfm svneol=native#text/plain
|
||||
ide/keymapschemedlg.pas svneol=native#text/pascal
|
||||
ide/keymapshortcutdlg.lfm svneol=native#text/plain
|
||||
ide/keymapshortcutdlg.pas svneol=native#text/plain
|
||||
ide/lazadvancedipc.pp svneol=native#text/pascal
|
||||
ide/lazarus.ico -text svneol=unset#image/ico
|
||||
ide/lazarus.lpi svneol=native#text/plain
|
||||
ide/lazarus.pp svneol=native#text/pascal
|
||||
|
@ -38,9 +38,14 @@ interface
|
||||
|
||||
uses
|
||||
sysutils, Interfaces, Classes, Controls, Forms, Dialogs, ExtCtrls,
|
||||
LCLProc, LCLIntf, LCLType, AdvancedIPC,
|
||||
LazFileUtils, LazUTF8, Laz2_DOM, laz2_XMLRead, laz2_XMLWrite,
|
||||
LazarusIDEStrConsts, IDECmdLine;
|
||||
LCLProc, LCLIntf, LCLType, LazFileUtils, LazUTF8, laz2_XMLRead, laz2_XMLWrite,
|
||||
Laz2_DOM, LazarusIDEStrConsts, IDECmdLine,
|
||||
{$IF (FPC_FULLVERSION >= 30101)}
|
||||
AdvancedIPC
|
||||
{$ELSE}
|
||||
LazAdvancedIPC
|
||||
{$ENDIF}
|
||||
;
|
||||
|
||||
type
|
||||
TStartNewInstanceResult = (ofrStartNewInstance, ofrDoNotStart, ofrModalError,
|
||||
|
@ -17,9 +17,13 @@
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
|
||||
***
|
||||
This unit is a duplicate of AdvancedIPC.pp from FPC (added in 3.1.1).
|
||||
It should be removed when support of older FPC versions is dropped.
|
||||
|
||||
**********************************************************************}
|
||||
|
||||
unit AdvancedIPC;
|
||||
unit LazAdvancedIPC;
|
||||
|
||||
{$mode objfpc}
|
||||
{$H+}
|
Loading…
Reference in New Issue
Block a user