From cc4020a5895584554cab31bf1dafc7f4019ec290 Mon Sep 17 00:00:00 2001 From: mattias Date: Wed, 5 Apr 2006 19:58:42 +0000 Subject: [PATCH] renamed msgintf.pas to idemsgintf.pas git-svn-id: trunk@9082 - --- .gitattributes | 2 +- converter/delphiproject2laz.pas | 2 +- converter/delphiunit2laz.pas | 2 +- examples/idequickfix/quickfixdemo1.pas | 2 +- ide/helpmanager.pas | 3 ++- ide/main.pp | 2 +- ide/mainbase.pas | 2 +- ide/msgquickfixes.pas | 2 +- ide/msgview.pp | 2 +- ide/outputfilter.pas | 2 +- ideintf/allideintf.pas | 2 +- ideintf/{msgintf.pas => idemsgintf.pas} | 2 +- 12 files changed, 13 insertions(+), 12 deletions(-) rename ideintf/{msgintf.pas => idemsgintf.pas} (99%) diff --git a/.gitattributes b/.gitattributes index 65d6739daf..7afb91c283 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1277,6 +1277,7 @@ ideintf/helpfpdoc.pas svneol=native#text/pascal ideintf/helphtml.pas svneol=native#text/pascal ideintf/helpintf.pas svneol=native#text/pascal ideintf/idecommands.pas svneol=native#text/pascal +ideintf/idemsgintf.pas svneol=native#text/plain ideintf/idewindowintf.pas svneol=native#text/plain ideintf/imagelisteditor.lfm svneol=native#text/plain ideintf/imagelisteditor.lrs svneol=native#text/plain @@ -1290,7 +1291,6 @@ ideintf/maskpropedit.lfm svneol=native#text/plain ideintf/maskpropedit.lrs svneol=native#text/plain ideintf/maskpropedit.pas svneol=native#text/plain ideintf/menuintf.pas svneol=native#text/plain -ideintf/msgintf.pas svneol=native#text/plain ideintf/newfield.lfm svneol=native#text/plain ideintf/newfield.lrs svneol=native#text/pascal ideintf/newfield.pas svneol=native#text/pascal diff --git a/converter/delphiproject2laz.pas b/converter/delphiproject2laz.pas index c94e052a1e..b09c2543dd 100644 --- a/converter/delphiproject2laz.pas +++ b/converter/delphiproject2laz.pas @@ -50,7 +50,7 @@ uses ExprEval, DefineTemplates, CodeCache, CodeToolManager, CodeToolsStructs, LinkScanner, // IDEIntf - SrcEditorIntf, ComponentReg, MsgIntf, MainIntf, LazIDEIntf, PackageIntf, + SrcEditorIntf, ComponentReg, IDEMsgIntf, MainIntf, LazIDEIntf, PackageIntf, ProjectIntf, // IDE IDEProcs, DelphiUnit2Laz, Project, DialogProcs, CheckLFMDlg, diff --git a/converter/delphiunit2laz.pas b/converter/delphiunit2laz.pas index 44326114de..7e56abd1c4 100644 --- a/converter/delphiunit2laz.pas +++ b/converter/delphiunit2laz.pas @@ -44,7 +44,7 @@ uses // Components SynEdit, CodeAtom, CodeCache, CodeToolManager, DefineTemplates, // IDEIntf - LazIDEIntf, MsgIntf, + LazIDEIntf, IDEMsgIntf, // IDE CompilerOptions, PackageDefs, Project, DialogProcs, IDEProcs, LazarusIDEStrConsts; diff --git a/examples/idequickfix/quickfixdemo1.pas b/examples/idequickfix/quickfixdemo1.pas index b60e430056..5640e171fa 100644 --- a/examples/idequickfix/quickfixdemo1.pas +++ b/examples/idequickfix/quickfixdemo1.pas @@ -43,7 +43,7 @@ unit QuickFixDemo1; interface uses - Classes, SysUtils, LCLProc, MsgIntf, CodeTree, CodeAtom, BasicCodeTools, + Classes, SysUtils, LCLProc, IDEMsgIntf, CodeTree, CodeAtom, BasicCodeTools, PascalParserTool, SourceChanger, LazIDEIntf, CodeCache, CodeToolManager, Dialogs; diff --git a/ide/helpmanager.pas b/ide/helpmanager.pas index 9484475aec..fc88400fd4 100644 --- a/ide/helpmanager.pas +++ b/ide/helpmanager.pas @@ -37,7 +37,8 @@ uses CodeToolManager, CodeAtom, CodeCache, CustomCodeTool, CodeTree, PascalParserTool, FindDeclarationTool, PropEdits, ObjectInspector, FormEditingIntf, ProjectIntf, - HelpIntf, HelpHTML, HelpFPDoc, MacroIntf, IDEWindowIntf, MsgIntf, LazIDEIntf, + HelpIntf, HelpHTML, HelpFPDoc, MacroIntf, IDEWindowIntf, IDEMsgIntf, + LazIDEIntf, LazarusIDEStrConsts, TransferMacros, DialogProcs, IDEOptionDefs, ObjInspExt, EnvironmentOpts, AboutFrm, MsgView, Project, PackageDefs, MainBar, OutputFilter, HelpOptions, MainIntf, LazConf, ExtCtrls, LResources, diff --git a/ide/main.pp b/ide/main.pp index be70da5113..4ad5845df4 100644 --- a/ide/main.pp +++ b/ide/main.pp @@ -72,7 +72,7 @@ uses SynEditKeyCmds, // IDE interface AllIDEIntf, ObjectInspector, PropEdits, MacroIntf, IDECommands, SrcEditorIntf, - NewItemIntf, MsgIntf, PackageIntf, ProjectIntf, MenuIntf, LazIDEIntf, + NewItemIntf, IDEMsgIntf, PackageIntf, ProjectIntf, MenuIntf, LazIDEIntf, // protocol IDEProtocol, // compile diff --git a/ide/mainbase.pas b/ide/mainbase.pas index e1022aa103..3a15f66ece 100644 --- a/ide/mainbase.pas +++ b/ide/mainbase.pas @@ -61,7 +61,7 @@ uses CodeCache, AVL_Tree, SynEditKeyCmds, // IDE LazConf, LazarusIDEStrConsts, SrcEditorIntf, LazIDEIntf, MenuIntf, - IDECommands, MsgIntf, + IDECommands, IDEMsgIntf, ProjectDefs, Project, PublishModule, BuildLazDialog, Compiler, ComponentReg, OutputFilter, TransferMacros, ObjectInspector, PropEdits, IDEDefs, MsgView, diff --git a/ide/msgquickfixes.pas b/ide/msgquickfixes.pas index a1421d2bd1..8e51f04a41 100644 --- a/ide/msgquickfixes.pas +++ b/ide/msgquickfixes.pas @@ -30,7 +30,7 @@ unit MsgQuickFixes; interface uses - Classes, SysUtils, LCLProc, MsgIntf, TextTools, LazarusIDEStrConsts, + Classes, SysUtils, LCLProc, IDEMsgIntf, TextTools, LazarusIDEStrConsts, LazIDEIntf, CodeCache, CodeToolManager; type diff --git a/ide/msgview.pp b/ide/msgview.pp index f647f34033..ee4dd05ca9 100644 --- a/ide/msgview.pp +++ b/ide/msgview.pp @@ -55,7 +55,7 @@ uses LCLProc, LResources, MenuIntf, - MsgIntf, + IDEMsgIntf, Menus, StdCtrls, SysUtils; diff --git a/ide/outputfilter.pas b/ide/outputfilter.pas index 28596a13e5..b5209847a8 100644 --- a/ide/outputfilter.pas +++ b/ide/outputfilter.pas @@ -28,7 +28,7 @@ interface uses Classes, SysUtils, Forms, Controls, CompilerOptions, Project, Process, - IDEProcs, FileUtil, LclProc, LazConf, AsyncProcess, MsgIntf; + IDEProcs, FileUtil, LclProc, LazConf, AsyncProcess, IDEMsgIntf; type TOnOutputString = procedure(const Msg, Directory: String; diff --git a/ideintf/allideintf.pas b/ideintf/allideintf.pas index 0daba81e18..d94ad0b80d 100644 --- a/ideintf/allideintf.pas +++ b/ideintf/allideintf.pas @@ -34,6 +34,7 @@ uses HelpHTML, HelpIntf, IDECommands, + IDEMsgIntf, IDEWindowIntf, ImageListEditor, LazIDEIntf, @@ -41,7 +42,6 @@ uses MacroIntf, MaskPropEdit, MenuIntf, - MsgIntf, NewItemIntf, ObjectInspector, ObjInspStrConsts, diff --git a/ideintf/msgintf.pas b/ideintf/idemsgintf.pas similarity index 99% rename from ideintf/msgintf.pas rename to ideintf/idemsgintf.pas index 05a5245e05..ac15473162 100644 --- a/ideintf/msgintf.pas +++ b/ideintf/idemsgintf.pas @@ -15,7 +15,7 @@ Abstract: Interface to the IDE messages (below the source editor). } -unit MsgIntf; +unit IDEMsgIntf; {$mode objfpc}{$H+}