On 16 February 2012 14:54, Felipe Monteiro de Carvalho wrote: > > Done: http://wiki.lazarus.freepascal.org/LazEdit > > I wrote a system to manage translations, added an english translation > while keeping the dutch one, made the toolbars configurable, removed > all dependencies and I concentrated all HTML tools in one menu to make > it more a general text editor.
Nice work to both Bart and Felipe. @Felipe I just grabbed the latest code from SourceForge (as directed in the wiki page). I couldn't compile the project (even with the latest Lazarus Trunk), until I removed all references to a non-existing "EPlus_Commons" unit in a few uses clauses. I attached a patch to this email, which fixes this problem. -- Regards, - Graeme - _______________________________________________ fpGUI - a cross-platform Free Pascal GUI toolkit http://fpgui.sourceforge.net
From 77f26101d44f4b7e0a9559ddc46f413357d6b30e Mon Sep 17 00:00:00 2001 From: Graeme Geldenhuys <[email protected]> Date: Thu, 16 Feb 2012 15:56:37 +0200 Subject: [PATCH] removed references to non-existing units. Now the project can be compiled with latest Lazarus Trunk. --- editorpagecontrol.pp | 2 +- lazedit_config.pas | 2 +- main.pp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/editorpagecontrol.pp b/editorpagecontrol.pp index a8c65b6..777a421 100644 --- a/editorpagecontrol.pp +++ b/editorpagecontrol.pp @@ -45,7 +45,7 @@ uses SynHighlighterPython, SynHighlighterBat, SynHighlighterIni, SynHighlighterJava, SynHighlighterUnixShellScript, SynHighLighterPo, SynEditMouseCmds, SynEditKeyCmds, - EPlus_Commons, lazedit_translations, lazedit_constants; + lazedit_translations, lazedit_constants; diff --git a/lazedit_config.pas b/lazedit_config.pas index 9e6f300..5c3d9a2 100644 --- a/lazedit_config.pas +++ b/lazedit_config.pas @@ -39,7 +39,7 @@ unit lazedit_config; interface uses - SysUtils, Classes, EditorPageControl, EPlus_COmmons, lazedit_constants, Forms,{FCL_Misc,} IniFiles, + SysUtils, Classes, EditorPageControl, lazedit_constants, Forms,{FCL_Misc,} IniFiles, LCLProc; type diff --git a/main.pp b/main.pp index 25b080e..b823103 100644 --- a/main.pp +++ b/main.pp @@ -46,7 +46,7 @@ uses LMessages, {for overridden IsShortCut} SynEdit, SynEditTypes, EditorPageControl, - EPlus_Commons, lazedit_config, HtmlCode, HtmlDialogs, lazedit_constants, + lazedit_config, HtmlCode, HtmlDialogs, lazedit_constants, lazedit_translations, lazedit_about; type -- 1.7.0.4
-- _______________________________________________ Lazarus mailing list [email protected] http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
