From 91f53fd2a857714c794e0ccc6d8c91c79f41684a Mon Sep 17 00:00:00 2001 From: patacongo Date: Tue, 22 May 2012 21:01:42 +0000 Subject: 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 --- NxWidgets/nxwm/include/chexcalculator.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'NxWidgets/nxwm/include/chexcalculator.hxx') 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 */ -- cgit v1.2.3