Skip to content

Commit

Permalink
Update InterfacePanel.cpp
Browse files Browse the repository at this point in the history
Removed default values from cpp file
  • Loading branch information
Megunolink committed Dec 2, 2014
1 parent 1941e49 commit edaedd7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utility/InterfacePanel.cpp
Expand Up @@ -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);
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit edaedd7

Please sign in to comment.