mirror of https://gitlab.com/basile.b/dexed.git
removed resource loader from main source
because of http://bugs.freepascal.org/view.php?id=28086
This commit is contained in:
parent
291b5bad3c
commit
ff49acb58f
|
@ -135,7 +135,7 @@
|
|||
<PackageName Value="LCL"/>
|
||||
</Item6>
|
||||
</RequiredPackages>
|
||||
<Units Count="36">
|
||||
<Units Count="37">
|
||||
<Unit0>
|
||||
<Filename Value="coedit.lpr"/>
|
||||
<IsPartOfProject Value="True"/>
|
||||
|
@ -329,6 +329,11 @@
|
|||
<Filename Value="..\src\ce_writablecomponent.pas"/>
|
||||
<IsPartOfProject Value="True"/>
|
||||
</Unit35>
|
||||
<Unit36>
|
||||
<Filename Value="..\src\ce_sharedres.pas"/>
|
||||
<IsPartOfProject Value="True"/>
|
||||
<UnitName Value="ce_sharedres"/>
|
||||
</Unit36>
|
||||
</Units>
|
||||
</ProjectOptions>
|
||||
<CompilerOptions>
|
||||
|
|
|
@ -7,14 +7,13 @@ uses
|
|||
cthreads,
|
||||
{$ENDIF}{$ENDIF}
|
||||
Interfaces, Forms, lazcontrols, runtimetypeinfocontrols, LResources,
|
||||
ce_observer, ce_libman, ce_tools, ce_dcd, ce_main, ce_writableComponent,
|
||||
ce_symstring, ce_staticmacro, ce_inspectors, ce_editoroptions,
|
||||
ce_dockoptions, ce_shortcutseditor, ce_mru;
|
||||
ce_sharedres, ce_observer, ce_libman, ce_tools, ce_dcd, ce_main,
|
||||
ce_writableComponent, ce_symstring, ce_staticmacro, ce_inspectors,
|
||||
ce_editoroptions, ce_dockoptions, ce_shortcutseditor, ce_mru;
|
||||
|
||||
{$R *.res}
|
||||
|
||||
begin
|
||||
{$I ../src/ce_icons.inc}
|
||||
Application.Initialize;
|
||||
Application.CreateForm(TCEMainForm, CEMainForm);
|
||||
Application.Run;
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
unit ce_sharedres;
|
||||
|
||||
interface
|
||||
|
||||
uses
|
||||
LResources;
|
||||
|
||||
implementation
|
||||
|
||||
initialization
|
||||
{$I ../src/ce_icons.inc}
|
||||
end.
|
||||
|
Loading…
Reference in New Issue