mirror of https://gitlab.com/basile.b/dexed.git
nothing
This commit is contained in:
parent
da8bb1eb24
commit
0e712aa0ee
|
|
@ -758,8 +758,6 @@ begin
|
||||||
aProcess.Options := aProcess.Options + [poNewConsole];
|
aProcess.Options := aProcess.Options + [poNewConsole];
|
||||||
end;
|
end;
|
||||||
|
|
||||||
// TODO-cbugfix: confirm that DCD location info are based on system Line ending and not the one existing in a specific file
|
|
||||||
|
|
||||||
function getLineEndingLength(const aFilename: string): byte;
|
function getLineEndingLength(const aFilename: string): byte;
|
||||||
var
|
var
|
||||||
value: char;
|
value: char;
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,9 @@ uses
|
||||||
ce_observer;
|
ce_observer;
|
||||||
|
|
||||||
type
|
type
|
||||||
|
|
||||||
|
{ TCEProjectConfigurationWidget }
|
||||||
|
|
||||||
TCEProjectConfigurationWidget = class(TCEWidget, ICEProjectObserver)
|
TCEProjectConfigurationWidget = class(TCEWidget, ICEProjectObserver)
|
||||||
btnSyncEdit: TSpeedButton;
|
btnSyncEdit: TSpeedButton;
|
||||||
imgList: TImageList;
|
imgList: TImageList;
|
||||||
|
|
@ -79,6 +82,8 @@ begin
|
||||||
Tree.Selected := Tree.Items.GetLastNode;
|
Tree.Selected := Tree.Items.GetLastNode;
|
||||||
inspector.OnEditorFilter := @GridFilter;
|
inspector.OnEditorFilter := @GridFilter;
|
||||||
inspector.CheckboxForBoolean := true;
|
inspector.CheckboxForBoolean := true;
|
||||||
|
//TODO-cfeature: project inspector synchro-mode for TStringList-based editors
|
||||||
|
// currently the event OnModified is only called for simple properties.
|
||||||
//
|
//
|
||||||
EntitiesConnector.addObserver(self);
|
EntitiesConnector.addObserver(self);
|
||||||
end;
|
end;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue