Skip to content

Commit

Permalink
Fix for issue #127895 (#31)
Browse files Browse the repository at this point in the history
Fixes using the incorrect variable.  See https://bz.apache.org/ooo/show_bug.cgi?id=127895
  • Loading branch information
oooforum authored May 7, 2021
1 parent d219bd2 commit b82be50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/sfx2/source/doc/sfxbasemodel.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -937,7 +937,7 @@ void SAL_CALL SfxBaseModel::disposing( const lang::EventObject& aObject )
else if ( xListener.is() )
m_pData->m_aInterfaceContainer.removeInterface( ::getCppuType((const uno::Reference< XEVENTLISTENER >*)0), xListener );
else if ( xDocListener.is() )
m_pData->m_aInterfaceContainer.removeInterface( ::getCppuType((const uno::Reference< XDOCEVENTLISTENER >*)0), xListener );
m_pData->m_aInterfaceContainer.removeInterface( ::getCppuType((const uno::Reference< XDOCEVENTLISTENER >*)0), xDocListener );
}

//________________________________________________________________________________________________________
Expand Down

0 comments on commit b82be50

Please sign in to comment.