This commit is contained in:
Basile Burg 2016-02-01 06:22:42 +01:00
parent 6433118bea
commit 5b39add5b6
10 changed files with 16 additions and 4 deletions

View File

@ -289,5 +289,7 @@ begin
end; end;
{$ENDREGION} {$ENDREGION}
initialization
RegisterClasses([TCEDmtWrapper]);
end. end.

View File

@ -653,6 +653,7 @@ end;
{$ENDREGION} {$ENDREGION}
initialization initialization
RegisterClasses([TCEEditorOptionsBase, TCEEditorOptions]);
EditorOptions := TCEEditorOptions.Create(nil); EditorOptions := TCEEditorOptions.Create(nil);
finalization finalization

View File

@ -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.

View File

@ -696,4 +696,6 @@ begin
end; end;
{$ENDREGION} {$ENDREGION}
initialization
RegisterClasses([TCEMiniExplorerOptions]);
end. end.

View File

@ -567,4 +567,6 @@ begin
end; end;
{$ENDREGION} {$ENDREGION}
initialization
RegisterClasses([TCESearchOptions]);
end. end.

View File

@ -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;

View File

@ -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;;

View File

@ -822,4 +822,6 @@ begin
end; end;
{$ENDREGION --------------------------------------------------------------------} {$ENDREGION --------------------------------------------------------------------}
initialization
RegisterClasses([TCESymbolListOptions]);
end. end.

View File

@ -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;

View File

@ -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.