summaryrefslogtreecommitdiff
path: root/NxWidgets/libnxwidgets/include/cwidgeteventhandlerlist.hxx
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-05-13 23:40:23 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-05-13 23:40:23 +0000
commitc39c92fb6b3803270215d5552acf6ac6d23a31f8 (patch)
treec170fb1e435a18d12ca9a86adf233074863b4546 /NxWidgets/libnxwidgets/include/cwidgeteventhandlerlist.hxx
parent21115c210a35c6f320a43d67fdd662639534eb2e (diff)
downloadnuttx-c39c92fb6b3803270215d5552acf6ac6d23a31f8.tar.gz
nuttx-c39c92fb6b3803270215d5552acf6ac6d23a31f8.tar.bz2
nuttx-c39c92fb6b3803270215d5552acf6ac6d23a31f8.zip
Disabled NXTK autoraise; it does not work properly in multi-user mode due to queue mouse/touchscreen input
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4732 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'NxWidgets/libnxwidgets/include/cwidgeteventhandlerlist.hxx')
-rw-r--r--NxWidgets/libnxwidgets/include/cwidgeteventhandlerlist.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/NxWidgets/libnxwidgets/include/cwidgeteventhandlerlist.hxx b/NxWidgets/libnxwidgets/include/cwidgeteventhandlerlist.hxx
index 8c9ef6738..f0a2f1d72 100644
--- a/NxWidgets/libnxwidgets/include/cwidgeteventhandlerlist.hxx
+++ b/NxWidgets/libnxwidgets/include/cwidgeteventhandlerlist.hxx
@@ -131,7 +131,7 @@ namespace NXWidgets
* @return True if events are enabled.
*/
- const bool isEnabled(void) const;
+ bool isEnabled(void) const;
/**
* Get the event handler at the specified index.
@@ -140,7 +140,7 @@ namespace NXWidgets
* @return The event handler at the specified index.
*/
- inline CWidgetEventHandler *at(const int index) const
+ inline CWidgetEventHandler *at(int index) const
{
return m_widgetEventHandlers.at(index);
}
@@ -151,7 +151,7 @@ namespace NXWidgets
* @return The size of the array.
*/
- inline const nxgl_coord_t size(void) const
+ inline nxgl_coord_t size(void) const
{
return m_widgetEventHandlers.size();
}