Use cstdint, etc. vs stdint.h, etc.

This commit is contained in:
Gregory Nutt 2014-07-16 15:09:20 -06:00
parent fb00e71771
commit ef1112d774
6 changed files with 11 additions and 10 deletions

View File

@ -76,8 +76,8 @@
#include <nuttx/config.h>
#include <stdint.h>
#include <stdbool.h>
#include <cstdint>
#include <cstdbool>
#include <nuttx/nx/nxglib.h>

View File

@ -76,8 +76,8 @@
#include <nuttx/config.h>
#include <stdint.h>
#include <stdbool.h>
#include <cstdint>
#include <cstdbool>
#include <nuttx/nx/nxglib.h>

View File

@ -3,6 +3,7 @@
*
* Copyright (C) 2013 Ken Pettit. All rights reserved.
* Author: Ken Pettit <pettitkd@gmail.com>
* Gregory Nutt <gnutt@nuttx.org> (updates to Ken's fundamental work)
*
* Based on and copied from csliderhorizontal.cxx written by Gregory Nutt
*

View File

@ -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())
{

View File

@ -73,8 +73,8 @@
#include <nuttx/config.h>
#include <stdint.h>
#include <stdbool.h>
#include <cstdint>
#include <cstdbool>
#include "cwidgetcontrol.hxx"
#include "clistboxdataitem.hxx"

View File

@ -73,8 +73,8 @@
#include <nuttx/config.h>
#include <stdint.h>
#include <stdbool.h>
#include <cstdint>
#include <cstdbool>
#include <cstring>
#include "clistdata.hxx"