From 1bc18905d753c0d493f303a38edd7c0d8c3c137c Mon Sep 17 00:00:00 2001 From: rubidium Date: Sun, 27 Sep 2009 18:36:05 +0000 Subject: (svn r17656) -Change: typo in function name. Also document the parameter (Terkhen) --- src/osk_gui.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/osk_gui.cpp') diff --git a/src/osk_gui.cpp b/src/osk_gui.cpp index ce6d343a9..eb03694c1 100644 --- a/src/osk_gui.cpp +++ b/src/osk_gui.cpp @@ -108,8 +108,9 @@ struct OskWindow : public Window { * Only show valid characters; do not show characters that would * only insert a space when we have a spacebar to do that or * characters that are not allowed to be entered. + * @param shift True if the shift key is pressed. */ - void ChangeOskDiabledState(bool shift) + void ChangeOskDisabledState(bool shift) { for (uint i = 0; i < OSK_KEYBOARD_ENTRIES; i++) { this->SetWidgetDisabledState(OSK_WIDGET_LETTERS + i, @@ -126,7 +127,7 @@ struct OskWindow : public Window { this->SetWidgetLoweredState(OSK_WIDGET_SHIFT, HasBit(_keystate, KEYS_SHIFT)); this->SetWidgetLoweredState(OSK_WIDGET_CAPS, HasBit(_keystate, KEYS_CAPS)); - this->ChangeOskDiabledState(shift); + this->ChangeOskDisabledState(shift); SetDParam(0, this->caption); this->DrawWidgets(); -- cgit v1.2.3-54-g00ecf