mirror of
https://github.com/soukoku/ntwain.git
synced 2026-01-26 21:48:36 +08:00
Fixed getter typo in TW_CIEPOINT.
This commit is contained in:
@@ -8,6 +8,7 @@ This project has these features/goals:
|
|||||||
|
|
||||||
* Targets latest TWAIN version (2.4 as of this writing)
|
* Targets latest TWAIN version (2.4 as of this writing)
|
||||||
* Supports all the TWAIN functions in the spec (may never happen but will be close).
|
* Supports all the TWAIN functions in the spec (may never happen but will be close).
|
||||||
|
* Works with both 32 and 64 bit data sources (eventually)
|
||||||
|
|
||||||
## Using the lib
|
## Using the lib
|
||||||
|
|
||||||
|
|||||||
@@ -22,6 +22,7 @@
|
|||||||
<ErrorReport>prompt</ErrorReport>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
<LangVersion>7.1</LangVersion>
|
<LangVersion>7.1</LangVersion>
|
||||||
|
<Prefer32Bit>true</Prefer32Bit>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
@@ -33,6 +34,9 @@
|
|||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
<LangVersion>7.1</LangVersion>
|
<LangVersion>7.1</LangVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||||
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="System" />
|
<Reference Include="System" />
|
||||||
<Reference Include="System.Core" />
|
<Reference Include="System.Core" />
|
||||||
|
|||||||
@@ -836,11 +836,11 @@ namespace NTwain.Data
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// First tri-stimulus value of the CIE space representation.
|
/// First tri-stimulus value of the CIE space representation.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public float X { get { return _z; } }
|
public float X { get { return _x; } }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Second tri-stimulus value of the CIE space representation.
|
/// Second tri-stimulus value of the CIE space representation.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public float Y { get { return _z; } }
|
public float Y { get { return _y; } }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Third tri-stimulus value of the CIE space representation.
|
/// Third tri-stimulus value of the CIE space representation.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|||||||
Reference in New Issue
Block a user