apps/graphics/twm4nx: Fix a common typo: backgound vs background.

This commit is contained in:
Gregory Nutt 2019-05-03 10:47:04 -06:00
parent fc7aa92b57
commit 9eb7db731e
2 changed files with 3 additions and 3 deletions

View File

@ -117,7 +117,7 @@ CBackground::~CBackground(void)
bool CBackground::
initialize(FAR const struct NXWidgets::SRlePaletteBitmap *sbitmap)
{
twminfo("Create the backgound window\n");
twminfo("Create the background window\n");
// Create the background window (if we have not already done so)
@ -128,7 +128,7 @@ bool CBackground::
return false;
}
twminfo("Create the backgound image\n");
twminfo("Create the background image\n");
// Create the new background image

View File

@ -201,7 +201,7 @@ bool CTwm4Nx::run(void)
return false;
}
// Initialize the backgound instance and paint the background image
// Initialize the background instance and paint the background image
if (!m_background->initialize(&CONFIG_TWM4NX_BACKGROUND_IMAGE))
{