diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2001-10-23 11:25:08 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2001-10-23 11:25:08 +0000 |
commit | bd31c94cfe50691e43d3cbbb25e796d8cc25c92f (patch) | |
tree | 3ab6dc886b22685bec50adbd796baba2901282d2 /svx/source/form | |
parent | b58ed457a7086cd5044914289d21f968f2017a34 (diff) |
#92924#: gcc-3.0.1 needs lvalue
Diffstat (limited to 'svx/source/form')
-rw-r--r-- | svx/source/form/fmtools.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/svx/source/form/fmtools.cxx b/svx/source/form/fmtools.cxx index 2950b2f4809c..54357e989a81 100644 --- a/svx/source/form/fmtools.cxx +++ b/svx/source/form/fmtools.cxx @@ -2,9 +2,9 @@ * * $RCSfile: fmtools.cxx,v $ * - * $Revision: 1.20 $ + * $Revision: 1.21 $ * - * last change: $Author: fs $ $Date: 2001-10-16 11:41:45 $ + * last change: $Author: hr $ $Date: 2001-10-23 12:25:08 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1844,7 +1844,8 @@ void SAL_CALL FmSlotDispatch::removeStatusListener( const Reference< ::com::sun: //------------------------------------------------------------------------------ void SAL_CALL FmSlotDispatch::dispose( ) throw(RuntimeException) { - ::com::sun::star::lang::EventObject aEvt(Reference< XInterface >(*this)); + Reference< XInterface > xXInterface((*this)); + ::com::sun::star::lang::EventObject aEvt(xXInterface); m_aDisposeListeners.disposeAndClear(aEvt); m_aStatusListeners.disposeAndClear(aEvt); } |