summaryrefslogtreecommitdiff
path: root/NxWidgets/nxwm/src/capplicationwindow.cxx
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-05-19 04:20:56 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-05-19 04:20:56 +0000
commit38b3dcac9e4dcb225ceaa7a4798a644537c50ece (patch)
treeaec833bcd4833134c4a769b6e3057a06eb2a9f74 /NxWidgets/nxwm/src/capplicationwindow.cxx
parente5350e893168b675cfd96b36fd7aad3ccfabf791 (diff)
downloadnuttx-38b3dcac9e4dcb225ceaa7a4798a644537c50ece.tar.gz
nuttx-38b3dcac9e4dcb225ceaa7a4798a644537c50ece.tar.bz2
nuttx-38b3dcac9e4dcb225ceaa7a4798a644537c50ece.zip
NxWM unit test now appears bug free (other than some NxConsole-related issues).
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4750 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'NxWidgets/nxwm/src/capplicationwindow.cxx')
-rw-r--r--NxWidgets/nxwm/src/capplicationwindow.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/NxWidgets/nxwm/src/capplicationwindow.cxx b/NxWidgets/nxwm/src/capplicationwindow.cxx
index 5cf172ea6..65de1b1a4 100644
--- a/NxWidgets/nxwm/src/capplicationwindow.cxx
+++ b/NxWidgets/nxwm/src/capplicationwindow.cxx
@@ -47,6 +47,7 @@
#include "nxwmconfig.hxx"
#include "nxwmglyphs.hxx"
+#include "cwindowmessenger.hxx"
#include "capplicationwindow.hxx"
/********************************************************************************************
@@ -152,15 +153,15 @@ CApplicationWindow::~CApplicationWindow(void)
bool CApplicationWindow::open(void)
{
- // Create a widget control for the tool bar
+ // Create the widget control (with the window messenger) using the default style
- NXWidgets::CWidgetControl *control = new NXWidgets::CWidgetControl();
+ CWindowMessenger *control = new CWindowMessenger();
if (!control)
{
return false;
}
- // Open the toolbar
+ // Open the toolbar using the widget control
m_toolbar = m_window->openToolbar(CONFIG_NXWM_TOOLBAR_HEIGHT, control);
if (!m_toolbar)