1
0
Fork 0

(svn r17656) -Change: typo in function name. Also document the parameter (Terkhen)

release/1.0
rubidium 2009-09-27 18:36:05 +00:00
parent 7b46347bb1
commit 1bc18905d7
1 changed files with 3 additions and 2 deletions

View File

@ -108,8 +108,9 @@ struct OskWindow : public Window {
* Only show valid characters; do not show characters that would * Only show valid characters; do not show characters that would
* only insert a space when we have a spacebar to do that or * only insert a space when we have a spacebar to do that or
* characters that are not allowed to be entered. * 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++) { for (uint i = 0; i < OSK_KEYBOARD_ENTRIES; i++) {
this->SetWidgetDisabledState(OSK_WIDGET_LETTERS + 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_SHIFT, HasBit(_keystate, KEYS_SHIFT));
this->SetWidgetLoweredState(OSK_WIDGET_CAPS, HasBit(_keystate, KEYS_CAPS)); this->SetWidgetLoweredState(OSK_WIDGET_CAPS, HasBit(_keystate, KEYS_CAPS));
this->ChangeOskDiabledState(shift); this->ChangeOskDisabledState(shift);
SetDParam(0, this->caption); SetDParam(0, this->caption);
this->DrawWidgets(); this->DrawWidgets();