From edaedd7d79a7faeb23b27568149327fcd623def0 Mon Sep 17 00:00:00 2001 From: Megunolink Date: Tue, 2 Dec 2014 11:18:34 -0600 Subject: [PATCH] Update InterfacePanel.cpp Removed default values from cpp file --- utility/InterfacePanel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utility/InterfacePanel.cpp b/utility/InterfacePanel.cpp index 448711d..c6e5a68 100644 --- a/utility/InterfacePanel.cpp +++ b/utility/InterfacePanel.cpp @@ -30,7 +30,7 @@ void InterfacePanel::SetNumber(const char * ControlName, int nValue) m_rDestination.print(nValue); SendDataTail(); } -void InterfacePanel::SetNumber(const char * ControlName, float fValue, int nDecimal = 3) +void InterfacePanel::SetNumber(const char * ControlName, float fValue, int nDecimal) { SendControlHeader(ControlName, F("Value")); m_rDestination.print(fValue,nDecimal); @@ -94,7 +94,7 @@ void InterfacePanel::SetNumber(const __FlashStringHelper * ControlName, int nVal SendDataTail(); } -void InterfacePanel::SetNumber(const __FlashStringHelper * ControlName, float fValue, int nDecimal = 3) +void InterfacePanel::SetNumber(const __FlashStringHelper * ControlName, float fValue, int nDecimal) { SendControlHeader(ControlName, F("Value")); m_rDestination.print(fValue,nDecimal);