summaryrefslogtreecommitdiff
path: root/nuttx/graphics/nxbe
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-11-27 23:31:37 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-11-27 23:31:37 +0000
commit0363cbbc1a111f650c8e6ec52d9a0719737511e3 (patch)
tree2029d26f3cab9fb67b8fbe2d0a9604f94ea9bcfc /nuttx/graphics/nxbe
parentb8258ae88c5c4137caf7a6569f0fc0a1d6752fb6 (diff)
downloadpx4-nuttx-0363cbbc1a111f650c8e6ec52d9a0719737511e3.tar.gz
px4-nuttx-0363cbbc1a111f650c8e6ec52d9a0719737511e3.tar.bz2
px4-nuttx-0363cbbc1a111f650c8e6ec52d9a0719737511e3.zip
More graphic support routines
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1321 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/graphics/nxbe')
-rw-r--r--nuttx/graphics/nxbe/nxbe_closewindow.c4
-rw-r--r--nuttx/graphics/nxbe/nxbe_move.c3
-rw-r--r--nuttx/graphics/nxbe/nxbe_raise.c2
-rw-r--r--nuttx/graphics/nxbe/nxbe_redraw.c3
-rw-r--r--nuttx/graphics/nxbe/nxbe_setposition.c6
-rw-r--r--nuttx/graphics/nxbe/nxbe_setsize.c6
6 files changed, 12 insertions, 12 deletions
diff --git a/nuttx/graphics/nxbe/nxbe_closewindow.c b/nuttx/graphics/nxbe/nxbe_closewindow.c
index 8987b898b..7d7a79eb7 100644
--- a/nuttx/graphics/nxbe/nxbe_closewindow.c
+++ b/nuttx/graphics/nxbe/nxbe_closewindow.c
@@ -44,8 +44,8 @@
#include <assert.h>
#include <debug.h>
-#include <nuttx/nx.h>
-#include "nxfe.h"
+#include <nuttx/nxglib.h>
+#include "nxbe.h"
/****************************************************************************
* Pre-Processor Definitions
diff --git a/nuttx/graphics/nxbe/nxbe_move.c b/nuttx/graphics/nxbe/nxbe_move.c
index 1dbfe4fc8..872ed55eb 100644
--- a/nuttx/graphics/nxbe/nxbe_move.c
+++ b/nuttx/graphics/nxbe/nxbe_move.c
@@ -41,10 +41,9 @@
#include <sys/types.h>
#include <nuttx/nxglib.h>
-#include <nuttx/nx.h>
#include "nxbe.h"
-#include "nxfe.h"
+//#include "nxfe.h"
/****************************************************************************
* Pre-Processor Definitions
diff --git a/nuttx/graphics/nxbe/nxbe_raise.c b/nuttx/graphics/nxbe/nxbe_raise.c
index 109fdaf1d..70353ab22 100644
--- a/nuttx/graphics/nxbe/nxbe_raise.c
+++ b/nuttx/graphics/nxbe/nxbe_raise.c
@@ -43,7 +43,7 @@
#include <nuttx/nxglib.h>
#include "nxbe.h"
-#include "nxfe.h"
+//#include "nxfe.h"
/****************************************************************************
* Pre-Processor Definitions
diff --git a/nuttx/graphics/nxbe/nxbe_redraw.c b/nuttx/graphics/nxbe/nxbe_redraw.c
index ed78228a0..576b969ee 100644
--- a/nuttx/graphics/nxbe/nxbe_redraw.c
+++ b/nuttx/graphics/nxbe/nxbe_redraw.c
@@ -43,8 +43,9 @@
#include <errno.h>
#include <debug.h>
+#include <nuttx/nxglib.h>
#include "nxbe.h"
-#include "nxfe.h"
+//#include "nxfe.h"
/****************************************************************************
* Pre-Processor Definitions
diff --git a/nuttx/graphics/nxbe/nxbe_setposition.c b/nuttx/graphics/nxbe/nxbe_setposition.c
index 13e100eda..87083a8c7 100644
--- a/nuttx/graphics/nxbe/nxbe_setposition.c
+++ b/nuttx/graphics/nxbe/nxbe_setposition.c
@@ -40,10 +40,10 @@
#include <nuttx/config.h>
#include <sys/types.h>
-#include <nuttx/nx.h>
+#include <nuttx/nxglib.h>
#include "nxbe.h"
-#include "nxfe.h"
+//#include "nxfe.h"
/****************************************************************************
* Pre-Processor Definitions
@@ -119,6 +119,6 @@ void nxbe_setposition(FAR struct nxbe_window_s *wnd,
/* Report the new size/position */
#ifdef CONFIG_NX_MULTIUSER
- nxmu_getposition(wnd);
+ nxmu_reportposition(wnd);
#endif
}
diff --git a/nuttx/graphics/nxbe/nxbe_setsize.c b/nuttx/graphics/nxbe/nxbe_setsize.c
index 322a814a4..b75aabfe6 100644
--- a/nuttx/graphics/nxbe/nxbe_setsize.c
+++ b/nuttx/graphics/nxbe/nxbe_setsize.c
@@ -40,8 +40,8 @@
#include <nuttx/config.h>
#include <sys/types.h>
-#include <nuttx/nx.h>
-#include "nxfe.h"
+#include <nuttx/nxglib.h>
+#include "nxbe.h"
/****************************************************************************
* Pre-Processor Definitions
@@ -108,6 +108,6 @@ void nxbe_setsize(FAR struct nxbe_window_s *wnd,
/* Report the new size/position */
#ifdef CONFIG_NX_MULTIUSER
- nxmu_getposition(wnd);
+ nxmu_reportposition(wnd);
#endif
}