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;
|
||||
{$ENDREGION}
|
||||
|
||||
initialization
|
||||
RegisterClasses([TCEDmtWrapper]);
|
||||
end.
|
||||
|
||||
|
|
|
@ -653,6 +653,7 @@ end;
|
|||
{$ENDREGION}
|
||||
|
||||
initialization
|
||||
RegisterClasses([TCEEditorOptionsBase, TCEEditorOptions]);
|
||||
EditorOptions := TCEEditorOptions.Create(nil);
|
||||
|
||||
finalization
|
||||
|
|
|
@ -1966,7 +1966,7 @@ begin
|
|||
sysutils.DeleteFile(fname + objExt);
|
||||
end
|
||||
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);
|
||||
end;
|
||||
|
||||
|
@ -2372,5 +2372,5 @@ end;
|
|||
|
||||
initialization
|
||||
registerClasses([TCEPersistentMainShortcuts, TCEPersistentMainMrus,
|
||||
TCELastDocsAndProjs]);
|
||||
TCELastDocsAndProjs, TCEApplicationOptionsBase, TCEApplicationOptions]);
|
||||
end.
|
||||
|
|
|
@ -696,4 +696,6 @@ begin
|
|||
end;
|
||||
{$ENDREGION}
|
||||
|
||||
initialization
|
||||
RegisterClasses([TCEMiniExplorerOptions]);
|
||||
end.
|
||||
|
|
|
@ -567,4 +567,6 @@ begin
|
|||
end;
|
||||
{$ENDREGION}
|
||||
|
||||
initialization
|
||||
RegisterClasses([TCESearchOptions]);
|
||||
end.
|
||||
|
|
|
@ -431,6 +431,7 @@ end;
|
|||
{$ENDREGION}
|
||||
|
||||
initialization
|
||||
RegisterClasses([TShortcutItem, TShortCutCollection]);
|
||||
CEShortcutEditor := TCEShortcutEditor.Create(nil);
|
||||
finalization
|
||||
CEShortcutEditor.Free;
|
||||
|
|
|
@ -404,6 +404,7 @@ end;
|
|||
{$ENDREGION}
|
||||
|
||||
initialization
|
||||
RegisterClasses([TStaticMacrosOptions]);
|
||||
StaticEditorMacro := TCEStaticEditorMacro.create(nil);
|
||||
finalization
|
||||
StaticEditorMacro.Free;;
|
||||
|
|
|
@ -822,4 +822,6 @@ begin
|
|||
end;
|
||||
{$ENDREGION --------------------------------------------------------------------}
|
||||
|
||||
initialization
|
||||
RegisterClasses([TCESymbolListOptions]);
|
||||
end.
|
||||
|
|
|
@ -1433,6 +1433,7 @@ initialization
|
|||
TCEEditorHintWindow.FontSize := 10;
|
||||
//
|
||||
RegisterKeyCmdIdentProcs(@CustomStringToCommand, @CustomCommandToSstring);
|
||||
RegisterClasses([TCESynMemoCache, TCEFoldCache]);
|
||||
finalization
|
||||
D2Syn.Free;
|
||||
LfmSyn.Free;
|
||||
|
|
|
@ -196,7 +196,6 @@ begin
|
|||
fItems.Clear;
|
||||
end;
|
||||
end;
|
||||
|
||||
{$ENDREGIOn}
|
||||
|
||||
{$REGION Standard Comp/Obj -----------------------------------------------------}
|
||||
|
@ -336,7 +335,6 @@ begin
|
|||
if Visible and fAutoRefresh then
|
||||
callToolProcess;
|
||||
end;
|
||||
|
||||
{$ENDREGION}
|
||||
|
||||
{$REGION ICEProjectObserver ----------------------------------------------------}
|
||||
|
@ -648,4 +646,6 @@ begin
|
|||
end;
|
||||
{$ENDREGION}
|
||||
|
||||
initialization
|
||||
RegisterClasses([TCETodoOptions]);
|
||||
end.
|
||||
|
|
Loading…
Reference in New Issue