summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/NxWidgets/Kconfig2
-rw-r--r--apps/examples/nx/nx_main.c4
-rw-r--r--apps/examples/nxtext/nxtext_popup.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/apps/NxWidgets/Kconfig b/apps/NxWidgets/Kconfig
index 5f956df54..a0f95ad82 100644
--- a/apps/NxWidgets/Kconfig
+++ b/apps/NxWidgets/Kconfig
@@ -901,7 +901,7 @@ config NXWM_CALIBRATION_MESSAGES
default n
---help---
By default, the calibration screen is clear excecpt for the
- calibratino touchpoints. If this options are enabled, then
+ calibration touchpoints. If this options are enabled, then
instructions when to touch and when to release the touch will
be added in the center of the display,
diff --git a/apps/examples/nx/nx_main.c b/apps/examples/nx/nx_main.c
index 92328d2a1..7bfd19732 100644
--- a/apps/examples/nx/nx_main.c
+++ b/apps/examples/nx/nx_main.c
@@ -703,7 +703,7 @@ int nx_main(int argc, char *argv[])
pt.x = g_xres / 8;
pt.y = g_yres / 8;
- message("nx_main: Set window #1 postion to (%d,%d)\n", pt.x, pt.y);
+ message("nx_main: Set window #1 position to (%d,%d)\n", pt.x, pt.y);
ret = nxeg_setposition(hwnd1, &pt);
if (ret < 0)
{
@@ -766,7 +766,7 @@ int nx_main(int argc, char *argv[])
pt.x = g_xres - size.w - pt.x;
pt.y = g_yres - size.h - pt.y;
- message("nx_main: Set hwnd2 postion to (%d,%d)\n", pt.x, pt.y);
+ message("nx_main: Set hwnd2 position to (%d,%d)\n", pt.x, pt.y);
ret = nxeg_setposition(hwnd2, &pt);
if (ret < 0)
{
diff --git a/apps/examples/nxtext/nxtext_popup.c b/apps/examples/nxtext/nxtext_popup.c
index f708292e5..4fcc80c13 100644
--- a/apps/examples/nxtext/nxtext_popup.c
+++ b/apps/examples/nxtext/nxtext_popup.c
@@ -364,7 +364,7 @@ NXWINDOW nxpu_open(void)
/* Set the position for the pop-up window */
- message("nxpu_open: Set pop-up postion to (%d,%d)\n", pt.x, pt.y);
+ message("nxpu_open: Set pop-up position to (%d,%d)\n", pt.x, pt.y);
ret = nxpu_setposition(hwnd, &pt);
if (ret < 0)
{