diff options
author | Noel Grandin <noel@peralex.com> | 2016-01-12 13:41:12 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-01-13 08:44:45 +0200 |
commit | 38c23520d40749ff21b6b1ed5f5c0375d40fe1fc (patch) | |
tree | be2126093be7d32e4f63d405f87fc6c063776e45 /sfx2/source/toolbox/tbxitem.cxx | |
parent | 2fc2f752447725ece32ce55d5db21b912902b3cf (diff) |
loplugin:unusedmethods unused return value in include/sfx2
Change-Id: Id4017bdfe18f8224d28a9f787865c7a880aeeed8
Diffstat (limited to 'sfx2/source/toolbox/tbxitem.cxx')
-rw-r--r-- | sfx2/source/toolbox/tbxitem.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sfx2/source/toolbox/tbxitem.cxx b/sfx2/source/toolbox/tbxitem.cxx index 35daecffe9db..f49b7dd13a35 100644 --- a/sfx2/source/toolbox/tbxitem.cxx +++ b/sfx2/source/toolbox/tbxitem.cxx @@ -983,7 +983,7 @@ void SfxPopupWindow::dispose() -SfxFrameStatusListener* SfxPopupWindow::GetOrCreateStatusListener() +void SfxPopupWindow::GetOrCreateStatusListener() { if ( !m_xStatusListener.is() ) { @@ -993,8 +993,6 @@ SfxFrameStatusListener* SfxPopupWindow::GetOrCreateStatusListener() this ); m_xStatusListener.set( static_cast< cppu::OWeakObject* >( m_pStatusListener ), UNO_QUERY ); } - - return m_pStatusListener; } |