Bug 610951 - Avoid c++0x compilers to fail on narrowing conversions inside {} in PluginInstanceChild.cpp. r=jst,a=jst

This commit is contained in:
Mike Hommey 2010-11-11 09:20:03 +01:00
Родитель 5d20fb66fd
Коммит d2876a53cc
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -2699,7 +2699,8 @@ PluginInstanceChild::ShowPluginFrame()
PaintRectToSurface(rect, mCurrentSurface, gfxRGBA(0.0, 0.0, 0.0, 0.0));
}
NPRect r = { rect.y, rect.x, rect.YMost(), rect.XMost() };
NPRect r = { (uint16_t)rect.y, (uint16_t)rect.x,
(uint16_t)rect.YMost(), (uint16_t)rect.XMost() };
SurfaceDescriptor currSurf;
#ifdef MOZ_X11
if (mCurrentSurface->GetType() == gfxASurface::SurfaceTypeXlib) {