mirror of https://gitlab.com/basile.b/dexed.git
renamed ambiguous identifier
This commit is contained in:
parent
845053b5e0
commit
eeab445c67
|
@ -1426,7 +1426,7 @@ end;
|
|||
procedure TCEMainForm.actFileAddToProjExecute(Sender: TObject);
|
||||
begin
|
||||
if fDoc = nil then exit;
|
||||
if fDoc.isProjectSource then exit; // TODO: rename this ambiguous property name to 'isProjectFile'
|
||||
if fDoc.isProjectFile then exit;
|
||||
if fProjectInterface = nil then exit;
|
||||
//
|
||||
if fProjectInterface.getFormat = pfNative then
|
||||
|
|
|
@ -159,7 +159,7 @@ type
|
|||
//
|
||||
property syncroEdit: TSynPluginSyncroEdit read fSyncEdit;
|
||||
property isDSource: boolean read fIsDSource;
|
||||
property isProjectSource: boolean read fIsConfig;
|
||||
property isProjectFile: boolean read fIsConfig; // warning: never set !
|
||||
property isTemporary: boolean read getIfTemp;
|
||||
property TextView;
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue