Kaydet (Commit) 6f0af3c2 authored tarafından Michael Meeks's avatar Michael Meeks

catch rather unlikely vcl case and don't crash

üst cdd27928
......@@ -494,6 +494,12 @@ BOOL X11SalGraphics::GetDitherPixmap( SalColor nSalColor )
void X11SalGraphics::GetResolution( sal_Int32 &rDPIX, sal_Int32 &rDPIY ) // const
{
const SalDisplay *pDisplay = GetDisplay();
if (!pDisplay)
{
OSL_TRACE("Null display");
rDPIX = rDPIY = 96;
return;
}
rDPIX = pDisplay->GetResolution().A();
rDPIY = pDisplay->GetResolution().B();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment