Skip to content

Commit

Permalink
corrected the builtin compilation constants
Browse files Browse the repository at this point in the history
  • Loading branch information
WaynePhillipsEA committed Jul 12, 2018
1 parent 5c6bfc6 commit 7d6b29a
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -22,23 +22,23 @@ public bool VBA7
{
get
{
return _vbVersion < 8;
return _vbVersion >= 7;
}
}

public bool VBA6
{
get
{
return _vbVersion < 7;
return _vbVersion >= 6;
}
}

public bool Win64
{
get
{
return Environment.Is64BitOperatingSystem;
return IntPtr.Size >= 8;
}
}

Expand Down

0 comments on commit 7d6b29a

Please sign in to comment.