summaryrefslogtreecommitdiff
path: root/NxWidgets/UnitTests/CGlyphButton/cglyphbuttontest.cxx
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-10-08 15:50:31 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-10-08 15:50:31 -0600
commitaca1565e0ad3dada18d391ec89eaf7a6ccb6fad5 (patch)
treea20873d6e499e66f41342ddde0fceff716738028 /NxWidgets/UnitTests/CGlyphButton/cglyphbuttontest.cxx
parentbd93ed3ae33f1e24467a4edd91e81d5e337cf3cb (diff)
downloadnuttx-aca1565e0ad3dada18d391ec89eaf7a6ccb6fad5.tar.gz
nuttx-aca1565e0ad3dada18d391ec89eaf7a6ccb6fad5.tar.bz2
nuttx-aca1565e0ad3dada18d391ec89eaf7a6ccb6fad5.zip
Fix files under NxWidgets to use the corrected syslog interfaces
Diffstat (limited to 'NxWidgets/UnitTests/CGlyphButton/cglyphbuttontest.cxx')
-rw-r--r--NxWidgets/UnitTests/CGlyphButton/cglyphbuttontest.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/NxWidgets/UnitTests/CGlyphButton/cglyphbuttontest.cxx b/NxWidgets/UnitTests/CGlyphButton/cglyphbuttontest.cxx
index 801da7289..61bea46fa 100644
--- a/NxWidgets/UnitTests/CGlyphButton/cglyphbuttontest.cxx
+++ b/NxWidgets/UnitTests/CGlyphButton/cglyphbuttontest.cxx
@@ -105,7 +105,7 @@ bool CGlyphButtonTest::connect(void)
if (!setBackgroundColor(CONFIG_CGLYPHBUTTONTEST_BGCOLOR))
{
- message("CGlyphButtonTest::connect: setBackgroundColor failed\n");
+ printf("CGlyphButtonTest::connect: setBackgroundColor failed\n");
}
}
@@ -159,7 +159,7 @@ bool CGlyphButtonTest::createWindow(void)
m_bgWindow = getBgWindow(m_widgetControl);
if (!m_bgWindow)
{
- message("CGlyphButtonTest::createGraphics: Failed to create CBgWindow instance\n");
+ printf("CGlyphButtonTest::createGraphics: Failed to create CBgWindow instance\n");
delete m_widgetControl;
return false;
}
@@ -169,7 +169,7 @@ bool CGlyphButtonTest::createWindow(void)
bool success = m_bgWindow->open();
if (!success)
{
- message("CGlyphButtonTest::createGraphics: Failed to open background window\n");
+ printf("CGlyphButtonTest::createGraphics: Failed to open background window\n");
delete m_bgWindow;
m_bgWindow = (CBgWindow*)0;
return false;
@@ -188,7 +188,7 @@ CGlyphButton *CGlyphButtonTest::createButton(FAR const struct SBitmap *clickGlyp
struct nxgl_size_s windowSize;
if (!m_bgWindow->getSize(&windowSize))
{
- message("CGlyphButtonTest::createGraphics: Failed to get window size\n");
+ printf("CGlyphButtonTest::createGraphics: Failed to get window size\n");
return (CGlyphButton *)NULL;
}