Bugfix: DetectionStrictness is an int, not float.

This commit is contained in:
Peter Rekdal Sunde
2015-07-09 22:31:37 +02:00
parent f01d9c5053
commit 32a3a330ab

View File

@@ -378,12 +378,12 @@ namespace openalprnet {
} }
} }
property float DetectionStrictness { property int DetectionStrictness {
float get() int get()
{ {
return this->m_config->detectionStrictness; return this->m_config->detectionStrictness;
} }
void set(float value) void set(int value)
{ {
this->m_config->detectionStrictness = value; this->m_config->detectionStrictness = value;
} }