Kaydet (Commit) 178c5d8c authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#704795 Unchecked dynamic_cast

Change-Id: I8526944acfb319f3e8e1e1927e94ea44eb59f5d6
üst 8a93ce4c
......@@ -245,7 +245,7 @@ namespace sfx2
pWindow->SetHelpId( HID_TASKPANE_WINDOW );
pWindow->SetOutputSizePixel( Size( 300, 450 ) );
dynamic_cast< SfxDockingWindow* >( pWindow )->Initialize( i_pInfo );
dynamic_cast<SfxDockingWindow&>(*pWindow).Initialize(i_pInfo);
SetHideNotDelete( true );
pWindow->Show();
......
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