Fix some recurring typos: postion->position, *atino->*ation

This commit is contained in:
Gregory Nutt 2014-07-08 13:12:36 -06:00
parent b2a27570d5
commit bf19806a0d
3 changed files with 4 additions and 4 deletions

View File

@ -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,

View File

@ -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)
{

View File

@ -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)
{