mirror of https://gitlab.com/basile.b/dexed.git
nothing
This commit is contained in:
parent
6433118bea
commit
5b39add5b6
|
@ -289,5 +289,7 @@ begin
|
||||||
end;
|
end;
|
||||||
{$ENDREGION}
|
{$ENDREGION}
|
||||||
|
|
||||||
|
initialization
|
||||||
|
RegisterClasses([TCEDmtWrapper]);
|
||||||
end.
|
end.
|
||||||
|
|
||||||
|
|
|
@ -653,6 +653,7 @@ end;
|
||||||
{$ENDREGION}
|
{$ENDREGION}
|
||||||
|
|
||||||
initialization
|
initialization
|
||||||
|
RegisterClasses([TCEEditorOptionsBase, TCEEditorOptions]);
|
||||||
EditorOptions := TCEEditorOptions.Create(nil);
|
EditorOptions := TCEEditorOptions.Create(nil);
|
||||||
|
|
||||||
finalization
|
finalization
|
||||||
|
|
|
@ -1966,7 +1966,7 @@ begin
|
||||||
sysutils.DeleteFile(fname + objExt);
|
sysutils.DeleteFile(fname + objExt);
|
||||||
end
|
end
|
||||||
else begin
|
else begin
|
||||||
fMsgs.message(shortenPath(fDoc.fileName,25) + ' has not been compiled',
|
fMsgs.message(shortenPath(fDoc.fileName, 25) + ' has not been compiled',
|
||||||
fDoc, amcEdit, amkErr);
|
fDoc, amcEdit, amkErr);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
@ -2372,5 +2372,5 @@ end;
|
||||||
|
|
||||||
initialization
|
initialization
|
||||||
registerClasses([TCEPersistentMainShortcuts, TCEPersistentMainMrus,
|
registerClasses([TCEPersistentMainShortcuts, TCEPersistentMainMrus,
|
||||||
TCELastDocsAndProjs]);
|
TCELastDocsAndProjs, TCEApplicationOptionsBase, TCEApplicationOptions]);
|
||||||
end.
|
end.
|
||||||
|
|
|
@ -696,4 +696,6 @@ begin
|
||||||
end;
|
end;
|
||||||
{$ENDREGION}
|
{$ENDREGION}
|
||||||
|
|
||||||
|
initialization
|
||||||
|
RegisterClasses([TCEMiniExplorerOptions]);
|
||||||
end.
|
end.
|
||||||
|
|
|
@ -567,4 +567,6 @@ begin
|
||||||
end;
|
end;
|
||||||
{$ENDREGION}
|
{$ENDREGION}
|
||||||
|
|
||||||
|
initialization
|
||||||
|
RegisterClasses([TCESearchOptions]);
|
||||||
end.
|
end.
|
||||||
|
|
|
@ -431,6 +431,7 @@ end;
|
||||||
{$ENDREGION}
|
{$ENDREGION}
|
||||||
|
|
||||||
initialization
|
initialization
|
||||||
|
RegisterClasses([TShortcutItem, TShortCutCollection]);
|
||||||
CEShortcutEditor := TCEShortcutEditor.Create(nil);
|
CEShortcutEditor := TCEShortcutEditor.Create(nil);
|
||||||
finalization
|
finalization
|
||||||
CEShortcutEditor.Free;
|
CEShortcutEditor.Free;
|
||||||
|
|
|
@ -404,6 +404,7 @@ end;
|
||||||
{$ENDREGION}
|
{$ENDREGION}
|
||||||
|
|
||||||
initialization
|
initialization
|
||||||
|
RegisterClasses([TStaticMacrosOptions]);
|
||||||
StaticEditorMacro := TCEStaticEditorMacro.create(nil);
|
StaticEditorMacro := TCEStaticEditorMacro.create(nil);
|
||||||
finalization
|
finalization
|
||||||
StaticEditorMacro.Free;;
|
StaticEditorMacro.Free;;
|
||||||
|
|
|
@ -822,4 +822,6 @@ begin
|
||||||
end;
|
end;
|
||||||
{$ENDREGION --------------------------------------------------------------------}
|
{$ENDREGION --------------------------------------------------------------------}
|
||||||
|
|
||||||
|
initialization
|
||||||
|
RegisterClasses([TCESymbolListOptions]);
|
||||||
end.
|
end.
|
||||||
|
|
|
@ -1433,6 +1433,7 @@ initialization
|
||||||
TCEEditorHintWindow.FontSize := 10;
|
TCEEditorHintWindow.FontSize := 10;
|
||||||
//
|
//
|
||||||
RegisterKeyCmdIdentProcs(@CustomStringToCommand, @CustomCommandToSstring);
|
RegisterKeyCmdIdentProcs(@CustomStringToCommand, @CustomCommandToSstring);
|
||||||
|
RegisterClasses([TCESynMemoCache, TCEFoldCache]);
|
||||||
finalization
|
finalization
|
||||||
D2Syn.Free;
|
D2Syn.Free;
|
||||||
LfmSyn.Free;
|
LfmSyn.Free;
|
||||||
|
|
|
@ -196,7 +196,6 @@ begin
|
||||||
fItems.Clear;
|
fItems.Clear;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
{$ENDREGIOn}
|
{$ENDREGIOn}
|
||||||
|
|
||||||
{$REGION Standard Comp/Obj -----------------------------------------------------}
|
{$REGION Standard Comp/Obj -----------------------------------------------------}
|
||||||
|
@ -336,7 +335,6 @@ begin
|
||||||
if Visible and fAutoRefresh then
|
if Visible and fAutoRefresh then
|
||||||
callToolProcess;
|
callToolProcess;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
{$ENDREGION}
|
{$ENDREGION}
|
||||||
|
|
||||||
{$REGION ICEProjectObserver ----------------------------------------------------}
|
{$REGION ICEProjectObserver ----------------------------------------------------}
|
||||||
|
@ -648,4 +646,6 @@ begin
|
||||||
end;
|
end;
|
||||||
{$ENDREGION}
|
{$ENDREGION}
|
||||||
|
|
||||||
|
initialization
|
||||||
|
RegisterClasses([TCETodoOptions]);
|
||||||
end.
|
end.
|
||||||
|
|
Loading…
Reference in New Issue