Skip to content

Commit

Permalink
Merge pull request xbmc#2280 from ace20022/cosmetic
Browse files Browse the repository at this point in the history
[Fix] Add lost parameter in GUIKeyboardFactory
  • Loading branch information
Memphiz committed Feb 23, 2013
2 parents 4b9a54c + eb517a0 commit 8123a39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xbmc/guilib/GUIKeyboardFactory.cpp
Expand Up @@ -112,7 +112,7 @@ bool CGUIKeyboardFactory::ShowAndGetInput(CStdString& aTextString, const CVarian

bool CGUIKeyboardFactory::ShowAndGetInput(CStdString& aTextString, bool allowEmptyResult, unsigned int autoCloseMs /* = 0 */)
{
return ShowAndGetInput(aTextString, "", allowEmptyResult, autoCloseMs) != 0;
return ShowAndGetInput(aTextString, "", allowEmptyResult, false, autoCloseMs);
}

// Shows keyboard and prompts for a password.
Expand All @@ -132,7 +132,7 @@ bool CGUIKeyboardFactory::ShowAndGetNewPassword(CStdString& newPassword, unsigne
bool CGUIKeyboardFactory::ShowAndGetFilter(CStdString &filter, bool searching, unsigned int autoCloseMs /* = 0 */)
{
m_filtering = searching ? FILTERING_SEARCH : FILTERING_CURRENT;
bool ret = ShowAndGetInput(filter, searching ? 16017 : 16028, true, autoCloseMs);
bool ret = ShowAndGetInput(filter, searching ? 16017 : 16028, true, false, autoCloseMs);
m_filtering = FILTERING_NONE;
return ret;
}
Expand Down

0 comments on commit 8123a39

Please sign in to comment.