mirror of https://gitlab.com/basile.b/dexed.git
class registration not needed for component streaming
This commit is contained in:
parent
87e1f554b5
commit
0cc827bb2a
|
@ -1136,5 +1136,4 @@ end;
|
|||
|
||||
initialization
|
||||
setCEProjectCompiler(dmd);
|
||||
RegisterClasses([TCENativeProject]);
|
||||
end.
|
||||
|
|
|
@ -293,12 +293,12 @@ type
|
|||
function globToReg(const glob: string ): string;
|
||||
|
||||
(**
|
||||
* Detects the main indetation mode used in a file
|
||||
* Detects the main indentation mode used in a file
|
||||
*)
|
||||
function indentationMode(strings: TStrings): TIndentationMode;
|
||||
|
||||
(**
|
||||
* Detects the main indetation mode used in a file
|
||||
* Detects the main indentation mode used in a file
|
||||
*)
|
||||
function indentationMode(const fname: string): TIndentationMode;
|
||||
|
||||
|
@ -1474,6 +1474,4 @@ begin
|
|||
value := t + value[m..value.length];
|
||||
end;
|
||||
|
||||
initialization
|
||||
registerClasses([TCEPersistentShortcut]);
|
||||
end.
|
||||
|
|
|
@ -1016,6 +1016,4 @@ begin
|
|||
Result := Integer(fTokKind);
|
||||
end;
|
||||
|
||||
initialization
|
||||
registerClasses([TSynD2Syn]);
|
||||
end.
|
||||
|
|
|
@ -327,7 +327,5 @@ begin
|
|||
end;
|
||||
{$ENDREGION}
|
||||
|
||||
initialization
|
||||
RegisterClasses([TCEDmtWrapper]);
|
||||
end.
|
||||
|
||||
|
|
|
@ -1645,7 +1645,4 @@ begin
|
|||
end;
|
||||
{$ENDREGION}
|
||||
|
||||
initialization
|
||||
RegisterClasses([TOtherOpts, TPathsOpts, TDebugOpts, TOutputOpts, TMsgOpts,
|
||||
TDocOpts, TCompileProcOptions, TProjectRunOptions, TCompilerConfiguration]);
|
||||
end.
|
||||
|
|
|
@ -763,7 +763,6 @@ end;
|
|||
{$ENDREGION}
|
||||
|
||||
initialization
|
||||
RegisterClasses([TCEEditorOptionsBase, TCEEditorOptions]);
|
||||
EditorOptions := TCEEditorOptions.Create(nil);
|
||||
|
||||
finalization
|
||||
|
|
|
@ -3693,7 +3693,4 @@ begin
|
|||
end;
|
||||
{$ENDREGION}
|
||||
|
||||
initialization
|
||||
registerClasses([TCEPersistentMainShortcuts, TCEPersistentMainMrus,
|
||||
TCELastDocsAndProjs, TCEApplicationOptionsBase, TCEApplicationOptions]);
|
||||
end.
|
||||
|
|
|
@ -729,6 +729,4 @@ begin
|
|||
end;
|
||||
{$ENDREGION}
|
||||
|
||||
initialization
|
||||
RegisterClasses([TCEMiniExplorerOptions]);
|
||||
end.
|
||||
|
|
|
@ -241,6 +241,4 @@ begin
|
|||
Insert(0, fname);
|
||||
end;
|
||||
|
||||
initialization
|
||||
RegisterClasses([TCEMRUList, TCEMRUFileList, TCEMRUProjectList, TCEMRUDocumentList]);
|
||||
end.
|
||||
|
|
|
@ -580,6 +580,4 @@ begin
|
|||
end;
|
||||
{$ENDREGION}
|
||||
|
||||
initialization
|
||||
RegisterClasses([TCESearchOptions]);
|
||||
end.
|
||||
|
|
|
@ -451,7 +451,6 @@ end;
|
|||
{$ENDREGION}
|
||||
|
||||
initialization
|
||||
RegisterClasses([TShortcutItem, TShortCutCollection]);
|
||||
CEShortcutEditor := TCEShortcutEditor.Create(nil);
|
||||
finalization
|
||||
CEShortcutEditor.Free;
|
||||
|
|
|
@ -398,7 +398,6 @@ end;
|
|||
{$ENDREGION}
|
||||
|
||||
initialization
|
||||
RegisterClasses([TStaticMacrosOptions]);
|
||||
StaticEditorMacro := TCEStaticEditorMacro.create(nil);
|
||||
finalization
|
||||
StaticEditorMacro.Free;;
|
||||
|
|
|
@ -861,6 +861,4 @@ begin
|
|||
end;
|
||||
{$ENDREGION --------------------------------------------------------------------}
|
||||
|
||||
initialization
|
||||
RegisterClasses([TCESymbolListOptions]);
|
||||
end.
|
||||
|
|
|
@ -3439,7 +3439,6 @@ initialization
|
|||
TCEEditorHintWindow.FontSize := 10;
|
||||
//
|
||||
RegisterKeyCmdIdentProcs(@CustomStringToCommand, @CustomCommandToSstring);
|
||||
RegisterClasses([TCESynMemoCache, TCEFoldCache]);
|
||||
finalization
|
||||
D2Syn.Free;
|
||||
LfmSyn.Free;
|
||||
|
|
|
@ -664,6 +664,4 @@ begin
|
|||
end;
|
||||
{$ENDREGION}
|
||||
|
||||
initialization
|
||||
RegisterClasses([TCETodoOptions]);
|
||||
end.
|
||||
|
|
|
@ -431,7 +431,6 @@ end;
|
|||
{$ENDREGION}
|
||||
|
||||
initialization
|
||||
RegisterClasses([TCEToolItem, TCETools]);
|
||||
CustomTools := TCETools.create(nil);
|
||||
finalization
|
||||
CustomTools.Free;
|
||||
|
|
|
@ -199,6 +199,4 @@ begin
|
|||
end;
|
||||
{$ENDREGION}
|
||||
|
||||
initialization
|
||||
registerClasses([TCustomWritableComponent, TWritableLfmTextComponent, TWritableJsonComponent]);
|
||||
end.
|
||||
|
|
Loading…
Reference in New Issue