Pointer arguments to NX set methods should be const
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4049 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
12fd3df1b1
commit
11969d86c2
@ -84,7 +84,7 @@
|
|||||||
*
|
*
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
int nx_setposition(NXWINDOW hwnd, FAR struct nxgl_point_s *pos)
|
int nx_setposition(NXWINDOW hwnd, FAR const struct nxgl_point_s *pos)
|
||||||
{
|
{
|
||||||
FAR struct nxbe_window_s *wnd = (FAR struct nxbe_window_s *)hwnd;
|
FAR struct nxbe_window_s *wnd = (FAR struct nxbe_window_s *)hwnd;
|
||||||
struct nxsvrmsg_setposition_s outmsg;
|
struct nxsvrmsg_setposition_s outmsg;
|
||||||
|
@ -70,7 +70,7 @@
|
|||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Name: nx_setsize`
|
* Name: nx_setsize
|
||||||
*
|
*
|
||||||
* Description:
|
* Description:
|
||||||
* Set the size of the selected window
|
* Set the size of the selected window
|
||||||
@ -84,7 +84,7 @@
|
|||||||
*
|
*
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
int nx_setsize(NXWINDOW hwnd, FAR struct nxgl_size_s *size)
|
int nx_setsize(NXWINDOW hwnd, FAR const struct nxgl_size_s *size)
|
||||||
{
|
{
|
||||||
FAR struct nxbe_window_s *wnd = (FAR struct nxbe_window_s *)hwnd;
|
FAR struct nxbe_window_s *wnd = (FAR struct nxbe_window_s *)hwnd;
|
||||||
struct nxsvrmsg_setsize_s outmsg;
|
struct nxsvrmsg_setsize_s outmsg;
|
||||||
|
@ -84,7 +84,7 @@
|
|||||||
*
|
*
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
int nx_setposition(NXWINDOW hwnd, FAR struct nxgl_point_s *pos)
|
int nx_setposition(NXWINDOW hwnd, FAR const struct nxgl_point_s *pos)
|
||||||
{
|
{
|
||||||
#ifdef CONFIG_DEBUG
|
#ifdef CONFIG_DEBUG
|
||||||
if (!hwnd || !pos)
|
if (!hwnd || !pos)
|
||||||
|
@ -84,7 +84,7 @@
|
|||||||
*
|
*
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
int nx_setsize(NXWINDOW hwnd, FAR struct nxgl_size_s *size)
|
int nx_setsize(NXWINDOW hwnd, FAR const struct nxgl_size_s *size)
|
||||||
{
|
{
|
||||||
#ifdef CONFIG_DEBUG
|
#ifdef CONFIG_DEBUG
|
||||||
if (!hwnd || !size)
|
if (!hwnd || !size)
|
||||||
|
@ -90,7 +90,7 @@
|
|||||||
*
|
*
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
int nxtk_setposition(NXTKWINDOW hfwnd, FAR struct nxgl_point_s *pos)
|
int nxtk_setposition(NXTKWINDOW hfwnd, FAR const struct nxgl_point_s *pos)
|
||||||
{
|
{
|
||||||
FAR struct nxtk_framedwindow_s *fwnd = (FAR struct nxtk_framedwindow_s *)hfwnd;
|
FAR struct nxtk_framedwindow_s *fwnd = (FAR struct nxtk_framedwindow_s *)hfwnd;
|
||||||
struct nxgl_point_s offset;
|
struct nxgl_point_s offset;
|
||||||
|
@ -90,7 +90,7 @@
|
|||||||
*
|
*
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
int nxtk_setsize(NXTKWINDOW hfwnd, FAR struct nxgl_size_s *size)
|
int nxtk_setsize(NXTKWINDOW hfwnd, FAR const struct nxgl_size_s *size)
|
||||||
{
|
{
|
||||||
FAR struct nxtk_framedwindow_s *fwnd = (FAR struct nxtk_framedwindow_s *)hfwnd;
|
FAR struct nxtk_framedwindow_s *fwnd = (FAR struct nxtk_framedwindow_s *)hfwnd;
|
||||||
struct nxgl_size_s newsize;
|
struct nxgl_size_s newsize;
|
||||||
|
@ -523,7 +523,7 @@ EXTERN int nx_getposition(NXWINDOW hwnd);
|
|||||||
*
|
*
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
EXTERN int nx_setposition(NXWINDOW hwnd, FAR struct nxgl_point_s *pos);
|
EXTERN int nx_setposition(NXWINDOW hwnd, FAR const struct nxgl_point_s *pos);
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Name: nx_setsize
|
* Name: nx_setsize
|
||||||
@ -540,7 +540,7 @@ EXTERN int nx_setposition(NXWINDOW hwnd, FAR struct nxgl_point_s *pos);
|
|||||||
*
|
*
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
EXTERN int nx_setsize(NXWINDOW hwnd, FAR struct nxgl_size_s *size);
|
EXTERN int nx_setsize(NXWINDOW hwnd, FAR const struct nxgl_size_s *size);
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Name: nx_raise
|
* Name: nx_raise
|
||||||
|
@ -144,7 +144,7 @@ EXTERN int nxtk_getposition(NXTKWINDOW hfwnd);
|
|||||||
*
|
*
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
EXTERN int nxtk_setposition(NXTKWINDOW hfwnd, FAR struct nxgl_point_s *pos);
|
EXTERN int nxtk_setposition(NXTKWINDOW hfwnd, FAR const struct nxgl_point_s *pos);
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Name: nxtk_setsize
|
* Name: nxtk_setsize
|
||||||
@ -163,7 +163,7 @@ EXTERN int nxtk_setposition(NXTKWINDOW hfwnd, FAR struct nxgl_point_s *pos);
|
|||||||
*
|
*
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
EXTERN int nxtk_setsize(NXTKWINDOW hfwnd, FAR struct nxgl_size_s *size);
|
EXTERN int nxtk_setsize(NXTKWINDOW hfwnd, FAR const struct nxgl_size_s *size);
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Name: nxtk_raise
|
* Name: nxtk_raise
|
||||||
|
Loading…
Reference in New Issue
Block a user