Fix querysupport for #49.

This commit is contained in:
soukoku 2015-06-20 19:46:09 -04:00
parent 9493cfd3b5
commit 4356ed0615
2 changed files with 2 additions and 1 deletions

View File

@ -36,6 +36,7 @@ namespace NTwain
QuerySupports? retVal = null;
using (TWCapability cap = new TWCapability(capabilityId))
{
cap.ContainerType = ContainerType.OneValue;
var rc = _source.DGControl.Capability.QuerySupport(cap);
if (rc == ReturnCode.Success)
{

View File

@ -23,7 +23,7 @@ namespace NTwain
/// <summary>
/// The build release version number.
/// </summary>
public const string Build = "3.3.3"; // change this for each nuget release
public const string Build = "3.3.4"; // change this for each nuget release
}