summaryrefslogtreecommitdiff
path: root/nuttx/graphics/nxtk/nxtk_closetoolbar.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/graphics/nxtk/nxtk_closetoolbar.c')
-rw-r--r--nuttx/graphics/nxtk/nxtk_closetoolbar.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/nuttx/graphics/nxtk/nxtk_closetoolbar.c b/nuttx/graphics/nxtk/nxtk_closetoolbar.c
index 22decf804..2cd44dfc3 100644
--- a/nuttx/graphics/nxtk/nxtk_closetoolbar.c
+++ b/nuttx/graphics/nxtk/nxtk_closetoolbar.c
@@ -84,11 +84,11 @@
* htb - The toolbar handle returned by nxtk_opentoolbar
*
* Return:
- * None
+ * OK on success; ERROR on failure with errno set appropriately
*
****************************************************************************/
-void nxtk_closetoolbar(NXTKTOOLBAR htb)
+int nxtk_closetoolbar(NXTKTOOLBAR htb)
{
FAR struct nxtk_framedwindow_s *fwnd = (FAR struct nxtk_framedwindow_s *)htb;
@@ -107,5 +107,6 @@ void nxtk_closetoolbar(NXTKTOOLBAR htb)
*/
nxfe_redrawreq(&fwnd->wnd, &fwnd->wnd.bounds);
+ return OK;
}