Fix files under NxWidgets to use the corrected syslog interfaces

This commit is contained in:
Gregory Nutt 2014-10-08 15:50:31 -06:00
parent 38af1a529d
commit b6c84f5b45
42 changed files with 241 additions and 368 deletions

View file

@ -103,7 +103,7 @@ bool CLatchButtonArrayTest::connect(void)
if (!setBackgroundColor(CONFIG_CLATCHBUTTONARRAYTEST_BGCOLOR))
{
message("CLatchButtonArrayTest::connect: setBackgroundColor failed\n");
printf("CLatchButtonArrayTest::connect: setBackgroundColor failed\n");
}
}
@ -157,7 +157,7 @@ bool CLatchButtonArrayTest::createWindow(void)
m_bgWindow = getBgWindow(m_widgetControl);
if (!m_bgWindow)
{
message("CLatchButtonArrayTest::createGraphics: Failed to create CBgWindow instance\n");
printf("CLatchButtonArrayTest::createGraphics: Failed to create CBgWindow instance\n");
delete m_widgetControl;
return false;
}
@ -167,7 +167,7 @@ bool CLatchButtonArrayTest::createWindow(void)
bool success = m_bgWindow->open();
if (!success)
{
message("CLatchButtonArrayTest::createGraphics: Failed to open background window\n");
printf("CLatchButtonArrayTest::createGraphics: Failed to open background window\n");
delete m_bgWindow;
m_bgWindow = (CBgWindow*)0;
return false;
@ -185,7 +185,7 @@ CLatchButtonArray *CLatchButtonArrayTest::createButtonArray(void)
struct nxgl_size_s windowSize;
if (!m_bgWindow->getSize(&windowSize))
{
message("CLatchButtonArrayTest::createGraphics: Failed to get window size\n");
printf("CLatchButtonArrayTest::createGraphics: Failed to get window size\n");
return (CLatchButtonArray *)NULL;
}