Skip to content

Commit

Permalink
[Regular Commit]
Browse files Browse the repository at this point in the history
- fix Developer Toolbox Project Wizard =>
  MS Project limitation [discussion:586370]

Imported from NetOffice 113360
https://netoffice.codeplex.com/SourceControl/changeset/113360
Legacy NetOffice Git repository commit 2159b8b8bf9533936f2d1fda4ae6b3c8527de926
  • Loading branch information
SebastianDotNet authored and jozefizso committed Apr 13, 2016
1 parent 682f463 commit 591ba20
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -573,15 +573,15 @@ private static List<string> CreateValidatedReferenceList(string[] officeApps)
dependecies.Add("MSComctlLib");
break;
case "MSProject":
break;
case "Visio":
if (!dependecies.Any(a => a == "Office"))
dependecies.Add("Office");
if (!dependecies.Any(a => a == "VBIDE"))
dependecies.Add("VBIDE");
if (!dependecies.Any(a => a == "MSHTML"))
dependecies.Add("MSHTML");
break;
case "Visio":
break;
default:
break;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ internal bool IsSingleVisioProject
CheckBox box = winCtrl as CheckBox;
if (null != box)
{
if (box.Name == "checkBoxProject" && box.Checked)
if (box.Name == "checkBoxVisio" && box.Checked)
{
visioChecked = true;
}
Expand Down

0 comments on commit 591ba20

Please sign in to comment.