From 55c470660a2ebb05bf7365e16a3c680f553bfd2a Mon Sep 17 00:00:00 2001 From: Peter Rekdal Sunde Date: Wed, 8 Jul 2015 14:57:20 +0200 Subject: [PATCH] Bugfix: Method has been moved and renamed. --- src/bindings/csharp/openalpr-net/openalpr-net.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bindings/csharp/openalpr-net/openalpr-net.cpp b/src/bindings/csharp/openalpr-net/openalpr-net.cpp index 7f31828..94c3421 100644 --- a/src/bindings/csharp/openalpr-net/openalpr-net.cpp +++ b/src/bindings/csharp/openalpr-net/openalpr-net.cpp @@ -886,9 +886,9 @@ namespace openalprnet { } } - void DebugOff(bool value) + void SetDebug(bool value) { - this->m_config->debugOff(value); + this->SetDebug(value); } String^ GetKeypointsRuntimeDir()