diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2001-11-02 10:00:34 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2001-11-02 10:00:34 +0000 |
commit | 7c6441642a2fa06bb8942e2552c47b7a7d89d5dc (patch) | |
tree | 589337368cd92bbe5bc36919f08a28b294d42b4d /extensions/source/scanner | |
parent | 5617709029016bf556cfd5b29c2b7db41e3554af (diff) |
#92924#: gcc-3.0.1 needs lvalue
Diffstat (limited to 'extensions/source/scanner')
-rw-r--r-- | extensions/source/scanner/scanunx.cxx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/extensions/source/scanner/scanunx.cxx b/extensions/source/scanner/scanunx.cxx index ab61dfbcc2e3..3f2aed3d28a2 100644 --- a/extensions/source/scanner/scanunx.cxx +++ b/extensions/source/scanner/scanunx.cxx @@ -2,9 +2,9 @@ * * $RCSfile: scanunx.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: pl $ $Date: 2001-09-11 12:15:09 $ + * last change: $Author: hr $ $Date: 2001-11-02 11:00:34 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -211,7 +211,9 @@ void ScannerThread::run() else m_pHolder->m_nError = ScanError_ScannerNotAvailable; - m_xListener->disposing( com::sun::star::lang::EventObject( REF( XInterface )( static_cast< OWeakObject* >( m_pManager ) ) ) ); + + REF( XInterface ) xXInterface( static_cast< OWeakObject* >( m_pManager ) ); + m_xListener->disposing( com::sun::star::lang::EventObject(xXInterface) ); } // ------------------ |