str.ToUpperCase() -> ToUpperCase(str), r=mozbot, rs=scc

This commit is contained in:
jaggernaut%netscape.com 2002-01-05 11:14:51 +00:00
Родитель 5820fb925b
Коммит c55591d51e
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -74,7 +74,7 @@ const char * nsMapiRegistryUtils::thisApplication()
len = ::GetShortPathName(buffer, shortPathBuf, MAX_PATH);
if (!len) return nsnull ;
m_thisApp = buffer;
m_thisApp.ToUpperCase();
ToUpperCase(m_thisApp);
}
return m_thisApp.get() ;
@ -234,8 +234,8 @@ PRBool nsMapiRegistryUtils::IsDefaultMailClient()
if (!result.IsEmpty()) {
nsCAutoString strExtension;
strExtension.Assign(EXE_EXTENSION);
result.ToUpperCase();
strExtension.ToUpperCase();
ToUpperCase(result);
ToUpperCase(strExtension);
PRInt32 index = result.RFind(strExtension.get());
if (index != kNotFound) {
result.Truncate(index + strExtension.Length());