Use cstdint, etc. vs stdint.h, etc.
This commit is contained in:
parent
fb00e71771
commit
ef1112d774
@ -76,8 +76,8 @@
|
|||||||
|
|
||||||
#include <nuttx/config.h>
|
#include <nuttx/config.h>
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <cstdint>
|
||||||
#include <stdbool.h>
|
#include <cstdbool>
|
||||||
|
|
||||||
#include <nuttx/nx/nxglib.h>
|
#include <nuttx/nx/nxglib.h>
|
||||||
|
|
||||||
|
@ -76,8 +76,8 @@
|
|||||||
|
|
||||||
#include <nuttx/config.h>
|
#include <nuttx/config.h>
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <cstdint>
|
||||||
#include <stdbool.h>
|
#include <cstdbool>
|
||||||
|
|
||||||
#include <nuttx/nx/nxglib.h>
|
#include <nuttx/nx/nxglib.h>
|
||||||
|
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
*
|
*
|
||||||
* Copyright (C) 2013 Ken Pettit. All rights reserved.
|
* Copyright (C) 2013 Ken Pettit. All rights reserved.
|
||||||
* Author: Ken Pettit <pettitkd@gmail.com>
|
* 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
|
* Based on and copied from csliderhorizontal.cxx written by Gregory Nutt
|
||||||
*
|
*
|
||||||
|
@ -462,7 +462,7 @@ void CListBox::drawContents(CGraphicsPort *port)
|
|||||||
nxgl_coord_t clipY = rect.getY();
|
nxgl_coord_t clipY = rect.getY();
|
||||||
nxgl_coord_t clipHeight = rect.getHeight();
|
nxgl_coord_t clipHeight = rect.getHeight();
|
||||||
|
|
||||||
// Precalc values for option draw loop
|
// Precalculate values for option draw loop
|
||||||
|
|
||||||
nxgl_coord_t optionHeight = getOptionHeight();
|
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 *item =
|
||||||
(const CListBoxDataItem*)m_options.getItem(m_lastSelectedIndex);
|
(const CListBoxDataItem*)m_options.getItem(m_lastSelectedIndex);
|
||||||
|
|
||||||
// Are we setting or unsetting?
|
// Are we selecting or de-selecting?
|
||||||
|
|
||||||
if (item->isSelected())
|
if (item->isSelected())
|
||||||
{
|
{
|
||||||
|
@ -73,8 +73,8 @@
|
|||||||
|
|
||||||
#include <nuttx/config.h>
|
#include <nuttx/config.h>
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <cstdint>
|
||||||
#include <stdbool.h>
|
#include <cstdbool>
|
||||||
|
|
||||||
#include "cwidgetcontrol.hxx"
|
#include "cwidgetcontrol.hxx"
|
||||||
#include "clistboxdataitem.hxx"
|
#include "clistboxdataitem.hxx"
|
||||||
|
@ -73,8 +73,8 @@
|
|||||||
|
|
||||||
#include <nuttx/config.h>
|
#include <nuttx/config.h>
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <cstdint>
|
||||||
#include <stdbool.h>
|
#include <cstdbool>
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
|
|
||||||
#include "clistdata.hxx"
|
#include "clistdata.hxx"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user