summaryrefslogtreecommitdiff
path: root/NxWidgets/nxwm/include
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-05-22 21:01:42 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-05-22 21:01:42 +0000
commit91f53fd2a857714c794e0ccc6d8c91c79f41684a (patch)
tree369773a3d67450df5cd2b670c3fcb0b5b501acc2 /NxWidgets/nxwm/include
parent237d7e4c1c99762ee856d360eb64c3aab453c4bf (diff)
downloadnuttx-91f53fd2a857714c794e0ccc6d8c91c79f41684a.tar.gz
nuttx-91f53fd2a857714c794e0ccc6d8c91c79f41684a.tar.bz2
nuttx-91f53fd2a857714c794e0ccc6d8c91c79f41684a.zip
CHexCalculator fixes + back out change to CNxtkWindow
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4761 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'NxWidgets/nxwm/include')
-rw-r--r--NxWidgets/nxwm/include/chexcalculator.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/NxWidgets/nxwm/include/chexcalculator.hxx b/NxWidgets/nxwm/include/chexcalculator.hxx
index d73e17faf..3ac50f71c 100644
--- a/NxWidgets/nxwm/include/chexcalculator.hxx
+++ b/NxWidgets/nxwm/include/chexcalculator.hxx
@@ -87,9 +87,9 @@ namespace NxWM
struct nxgl_size_s m_textSize; /**< The size of the calculator textbox */
struct nxgl_point_s m_keypadPos; /**< The position the calculator keypad */
struct nxgl_point_s m_textPos; /**< The position of the calculator textbox */
- uint64_t m_operand; /**< Previously entered operand */
- uint64_t m_accum; /**< The current accumulated value */
- uint64_t m_memory; /**< The current value in memory */
+ int64_t m_operand; /**< Previously entered operand */
+ int64_t m_accum; /**< The current accumulated value */
+ int64_t m_memory; /**< The current value in memory */
uint8_t m_pending; /**< The pending operation */
bool m_hexMode; /**< True if in hex mode */