mirror of
https://github.com/reactos/reactos.git
synced 2025-06-12 03:58:29 +00:00
[RAPPS] Fix command line handling
This commit is contained in:
parent
4f8dc9c266
commit
f133d01f20
3 changed files with 7 additions and 7 deletions
|
@ -402,7 +402,7 @@ CAvailableApplicationInfo* CAvailableApps::FindInfo(const ATL::CStringW& szAppNa
|
|||
while (CurrentListPosition != NULL)
|
||||
{
|
||||
info = m_InfoList.GetNext(CurrentListPosition);
|
||||
if (info->m_szName == szAppName)
|
||||
if (info->m_szName.CompareNoCase(szAppName) == 0)
|
||||
{
|
||||
return info;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue