зеркало из https://github.com/mozilla/gecko-dev.git
making string conversions explicit
This commit is contained in:
Родитель
20b510e7b4
Коммит
04c23b9c99
|
@ -390,7 +390,7 @@ nsTextServicesDocument::GetCurrentTextBlock(nsString *aStr)
|
|||
if (!aStr)
|
||||
return NS_ERROR_NULL_POINTER;
|
||||
|
||||
*aStr = "";
|
||||
aStr->SetLength(0);
|
||||
|
||||
if (!mIterator)
|
||||
return NS_ERROR_FAILURE;
|
||||
|
@ -4152,7 +4152,7 @@ nsTextServicesDocument::CreateOffsetTable(nsString *aStr)
|
|||
ClearOffsetTable();
|
||||
|
||||
if (aStr)
|
||||
*aStr = "";
|
||||
aStr->SetLength(0);
|
||||
|
||||
if (mIteratorStatus == nsTextServicesDocument::eIsDone)
|
||||
return NS_OK;
|
||||
|
|
|
@ -390,7 +390,7 @@ nsTextServicesDocument::GetCurrentTextBlock(nsString *aStr)
|
|||
if (!aStr)
|
||||
return NS_ERROR_NULL_POINTER;
|
||||
|
||||
*aStr = "";
|
||||
aStr->SetLength(0);
|
||||
|
||||
if (!mIterator)
|
||||
return NS_ERROR_FAILURE;
|
||||
|
@ -4152,7 +4152,7 @@ nsTextServicesDocument::CreateOffsetTable(nsString *aStr)
|
|||
ClearOffsetTable();
|
||||
|
||||
if (aStr)
|
||||
*aStr = "";
|
||||
aStr->SetLength(0);
|
||||
|
||||
if (mIteratorStatus == nsTextServicesDocument::eIsDone)
|
||||
return NS_OK;
|
||||
|
|
Загрузка…
Ссылка в новой задаче