(no bug) Remove terminal "." at the end of warning & assertion in nsBaseWidget.cpp, to fix ".:" in "warningmessage.: line-of-source-code". DONTBUILD because just tweaking assertion-message

This commit is contained in:
Daniel Holbert 2013-04-02 10:49:04 -07:00
parent 909bf66353
commit 73ac707d5b

View File

@ -846,10 +846,10 @@ nsBaseWidget::ComputeShouldAccelerate(bool aDefault)
return true;
if (!whitelisted) {
NS_WARNING("OpenGL-accelerated layers are not supported on this system.");
NS_WARNING("OpenGL-accelerated layers are not supported on this system");
#ifdef MOZ_ANDROID_OMTC
NS_RUNTIMEABORT("OpenGL-accelerated layers are a hard requirement on this platform. "
"Cannot continue without support for them.");
"Cannot continue without support for them");
#endif
return false;
}