summaryrefslogtreecommitdiff
path: root/NxWidgets/nxwm/src/cstartwindow.cxx
diff options
context:
space:
mode:
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;
}
/**