From 80ea5737ca7bbdb33ba3ccf37a7c919338876222 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Wed, 16 Jul 2014 15:09:20 -0600 Subject: Use cstdint, etc. vs stdint.h, etc. --- NxWidgets/libnxwidgets/src/clistbox.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'NxWidgets/libnxwidgets/src/clistbox.cxx') diff --git a/NxWidgets/libnxwidgets/src/clistbox.cxx b/NxWidgets/libnxwidgets/src/clistbox.cxx index 8d076f3d3..1c5d1e507 100644 --- a/NxWidgets/libnxwidgets/src/clistbox.cxx +++ b/NxWidgets/libnxwidgets/src/clistbox.cxx @@ -462,7 +462,7 @@ void CListBox::drawContents(CGraphicsPort *port) nxgl_coord_t clipY = rect.getY(); nxgl_coord_t clipHeight = rect.getHeight(); - // Precalc values for option draw loop + // Precalculate values for option draw loop nxgl_coord_t optionHeight = getOptionHeight(); @@ -607,7 +607,7 @@ void CListBox::onClick(nxgl_coord_t x, nxgl_coord_t y) const CListBoxDataItem *item = (const CListBoxDataItem*)m_options.getItem(m_lastSelectedIndex); - // Are we setting or unsetting? + // Are we selecting or de-selecting? if (item->isSelected()) { -- cgit v1.2.3