summaryrefslogtreecommitdiff
path: root/NxWidgets/nxwm/src/chexcalculator.cxx
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-04-13 16:26:44 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-04-13 16:26:44 -0600
commit638c1a6dc07b438efa220c5345e94c3a963505ca (patch)
tree85feed8dbf4f2dd7a2eec83ed88606f14a2f02a2 /NxWidgets/nxwm/src/chexcalculator.cxx
parent43ec94a665e13552402ff4f102e0f65f6792cf29 (diff)
downloadnuttx-638c1a6dc07b438efa220c5345e94c3a963505ca.tar.gz
nuttx-638c1a6dc07b438efa220c5345e94c3a963505ca.tar.bz2
nuttx-638c1a6dc07b438efa220c5345e94c3a963505ca.zip
More trailing whilespace removal
Diffstat (limited to 'NxWidgets/nxwm/src/chexcalculator.cxx')
-rw-r--r--NxWidgets/nxwm/src/chexcalculator.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/NxWidgets/nxwm/src/chexcalculator.cxx b/NxWidgets/nxwm/src/chexcalculator.cxx
index eeb0b1d1d..dc42de0c0 100644
--- a/NxWidgets/nxwm/src/chexcalculator.cxx
+++ b/NxWidgets/nxwm/src/chexcalculator.cxx
@@ -92,9 +92,9 @@ namespace NxWM
KEY_PLUS, // Additions
// Special operations
-
+
KEY_EQUAL, // Equal/Enter key
-
+
KEY_DECIMAL, // Decimal mode
KEY_HEXADECIMAL, // Hexadecimal mode
@@ -247,7 +247,7 @@ CHexCalculator::CHexCalculator(CTaskbar *taskbar, CApplicationWindow *window)
CHexCalculator::~CHexCalculator(void)
{
- // Destroy widgets
+ // Destroy widgets
if (m_text)
{
@@ -598,7 +598,7 @@ void CHexCalculator::labelKeypad(void)
{
label = "";
}
-
+
// Set the text in the label
m_keypad->setText(i, j, label);
@@ -848,7 +848,7 @@ void CHexCalculator::handleActionEvent(const NXWidgets::CWidgetEventArgs &e)
break;
// Special operations
-
+
case KEY_EQUAL: // Equal/Enter key
{
// Is there a high precedence operation?
@@ -877,7 +877,7 @@ void CHexCalculator::handleActionEvent(const NXWidgets::CWidgetEventArgs &e)
result = true;
}
break;
-
+
case KEY_DECIMAL: // Decimal mode
{
if (m_hexMode)