зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1087982, part 1 - Get rid of the useless null checks in nsRenderingContext::GetMaxChunkLength/GetWidth. r=jfkthame
This commit is contained in:
Родитель
a68d2993a2
Коммит
ca982b3f1b
|
@ -90,15 +90,13 @@ nsRenderingContext::SetFont(nsFontMetrics *aFontMetrics)
|
|||
int32_t
|
||||
nsRenderingContext::GetMaxChunkLength()
|
||||
{
|
||||
if (!mFontMetrics)
|
||||
return 1;
|
||||
return std::min(mFontMetrics->GetMaxStringLength(), MAX_GFX_TEXT_BUF_SIZE);
|
||||
}
|
||||
|
||||
nscoord
|
||||
nsRenderingContext::GetWidth(char aC)
|
||||
{
|
||||
if (aC == ' ' && mFontMetrics) {
|
||||
if (aC == ' ') {
|
||||
return mFontMetrics->SpaceWidth();
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче