mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-22 01:37:59 +02:00
Added missing ()'s for allocations
This commit is contained in:
parent
2320e2eb8c
commit
40fe76d903
10 changed files with 21 additions and 21 deletions
|
@ -411,7 +411,7 @@ namespace IDE.ui
|
|||
switch ((CategoryType)mPropPage.mCategoryType)
|
||||
{
|
||||
case .Project:
|
||||
var generalOptions = scope Project.GeneralOptions;
|
||||
var generalOptions = scope Project.GeneralOptions();
|
||||
mProject.SetupDefault(generalOptions);
|
||||
targetDict[mCurPropertiesTargets[0]] = generalOptions;
|
||||
UpdateFromTarget(targetDict);
|
||||
|
@ -420,7 +420,7 @@ namespace IDE.ui
|
|||
DistinctBuildOptions defaultTypeOptions = scope:: .();
|
||||
for (var typeOption in mProject.mBeefGlobalOptions.mDistinctBuildOptions)
|
||||
targetDict[typeOption] = defaultTypeOptions;
|
||||
var generalOptions = scope Project.BeefGlobalOptions;
|
||||
var generalOptions = scope Project.BeefGlobalOptions();
|
||||
mProject.SetupDefault(generalOptions);
|
||||
targetDict[mCurPropertiesTargets[0]] = generalOptions;
|
||||
UpdateFromTarget(targetDict);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue