Bug 534918: Add 'default' case to switch statement in nsThebesDeviceContext::SetDPI(), to fix build warnings. r=mfinkle

This commit is contained in:
Daniel Holbert 2009-12-15 14:42:54 -08:00
Родитель 3ed6a2c84c
Коммит b90db2ed10
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -659,6 +659,9 @@ nsThebesDeviceContext::SetDPI()
dpi = lDPI;
break;
#endif
default:
NS_NOTREACHED("Unexpected printing surface type");
break;
}
dotsArePixels = PR_FALSE;
} else {