Kaydet (Commit) 29ebb0ea authored tarafından Caolán McNamara's avatar Caolán McNamara

silence parent-less warning for temp images from builder

Change-Id: I3efcac58f7a6629ae2615e29ea564e583414479c
üst 3582b314
...@@ -854,7 +854,8 @@ static sal_Int32 CountDPIScaleFactor(sal_Int32 nDPI) ...@@ -854,7 +854,8 @@ static sal_Int32 CountDPIScaleFactor(sal_Int32 nDPI)
void Window::ImplInit( vcl::Window* pParent, WinBits nStyle, SystemParentData* pSystemParentData ) void Window::ImplInit( vcl::Window* pParent, WinBits nStyle, SystemParentData* pSystemParentData )
{ {
DBG_ASSERT( mpWindowImpl->mbFrame || pParent, "Window::Window(): pParent == NULL" ); DBG_ASSERT( mpWindowImpl->mbFrame || pParent || GetType() == WINDOW_FIXEDIMAGE,
"Window::Window(): pParent == NULL" );
ImplSVData* pSVData = ImplGetSVData(); ImplSVData* pSVData = ImplGetSVData();
vcl::Window* pRealParent = pParent; vcl::Window* pRealParent = pParent;
......
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