From f28bca7e616aa8404f1f1264576e459ac1ed8963 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Fri, 6 Jan 2017 19:34:02 +0100 Subject: [PATCH] dub proj editor, add missing "sourcePaths" property --- src/ce_dubprojeditor.pas | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ce_dubprojeditor.pas b/src/ce_dubprojeditor.pas index bbcf110d..f5ac5336 100644 --- a/src/ce_dubprojeditor.pas +++ b/src/ce_dubprojeditor.pas @@ -80,7 +80,7 @@ implementation {$R *.lfm} const - proposals: array[0..42] of TEditorProposal = ( + proposals: array[0..43] of TEditorProposal = ( (name: 'authors'; jtype: ptArray), (name: 'buildOptions'; jtype: ptArray), (name: 'buildRequirements'; jtype: ptArray), @@ -113,6 +113,7 @@ const (name: 'profile'; jtype: ptArray), (name: 'release'; jtype: ptArray), (name: 'sourceFiles'; jtype: ptArray), + (name: 'sourcePaths'; jtype: ptArray), (name: 'stringImportPaths'; jtype: ptArray), (name: 'subConfigurations'; jtype: ptObject), (name: 'subPackages'; jtype: ptArray),