summaryrefslogtreecommitdiff
path: root/NxWidgets/nxwm/src/cstartwindow.cxx
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-05-01 14:52:54 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-05-01 14:52:54 +0000
commit990276740afafeb69f64b01050a99f113bb89fa6 (patch)
tree80c3626717d9db8bc4b3b6726149aff19dbb446c /NxWidgets/nxwm/src/cstartwindow.cxx
parent2812a9f1df22438f8ccd30dd5e5dc48dc3465b3f (diff)
downloadpx4-nuttx-990276740afafeb69f64b01050a99f113bb89fa6.tar.gz
px4-nuttx-990276740afafeb69f64b01050a99f113bb89fa6.tar.bz2
px4-nuttx-990276740afafeb69f64b01050a99f113bb89fa6.zip
Add beginning of NxWM NxConsole application
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4681 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'NxWidgets/nxwm/src/cstartwindow.cxx')
-rw-r--r--NxWidgets/nxwm/src/cstartwindow.cxx8
1 files changed, 6 insertions, 2 deletions
diff --git a/NxWidgets/nxwm/src/cstartwindow.cxx b/NxWidgets/nxwm/src/cstartwindow.cxx
index 4213c33cb..6949b90db 100644
--- a/NxWidgets/nxwm/src/cstartwindow.cxx
+++ b/NxWidgets/nxwm/src/cstartwindow.cxx
@@ -70,7 +70,7 @@ CStartWindow::CStartWindow(CTaskbar *taskbar, CApplicationWindow *window)
m_taskbar = taskbar;
m_window = window;
- // Add out callbacks to the application window
+ // Add our callbacks to the application window
window->registerCallbacks(static_cast<IApplicationCallback *>(this));
}
@@ -133,11 +133,15 @@ NXWidgets::CNxString CStartWindow::getName(void)
/**
* Start the application.
+ *
+ * @return True if the application was successfully started.
*/
-void CStartWindow::run(void)
+bool CStartWindow::run(void)
{
// We don't have a thread of execution. We only respond to button presses
+
+ return true;
}
/**