diff options
author | Noel Grandin <noel@peralex.com> | 2014-06-25 08:43:20 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-06-25 17:10:43 +0200 |
commit | 533c6cb6bad6ef0432e8eebbfd4daf90ef71f3b4 (patch) | |
tree | 0575fd7acded0e19664352f44633cff93c3ab6b6 /forms | |
parent | 96ff10449464ae9d869fe21dccf193a6eef670c1 (diff) |
fixes for up-casting to Reference<XInterface>
Fix regressions introduced with
6a043e9c0acff20e1618ca8ec15c21d5d0fd0d37 "Use the new type-checking
Reference constructor to reduce code noise"
Change-Id: I85662856f21c810a7db497fe3b0e116f075b1687
Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'forms')
-rw-r--r-- | forms/source/misc/InterfaceContainer.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/forms/source/misc/InterfaceContainer.cxx b/forms/source/misc/InterfaceContainer.cxx index e6f0bfd49b14..27b246d30ec4 100644 --- a/forms/source/misc/InterfaceContainer.cxx +++ b/forms/source/misc/InterfaceContainer.cxx @@ -254,7 +254,7 @@ void OInterfaceContainer::disposing() // revoke event knittings if ( m_xEventAttacher.is() ) { - m_xEventAttacher->detach( i - 1, xSet ); + m_xEventAttacher->detach( i - 1, Reference<XInterface>(xSet, UNO_QUERY) ); m_xEventAttacher->removeEntry( i - 1 ); } |