diff options
Diffstat (limited to 'svtools/source/java/javainteractionhandler.cxx')
-rw-r--r-- | svtools/source/java/javainteractionhandler.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/java/javainteractionhandler.cxx b/svtools/source/java/javainteractionhandler.cxx index 82a113371abe..2f9bf8f87ecc 100644 --- a/svtools/source/java/javainteractionhandler.cxx +++ b/svtools/source/java/javainteractionhandler.cxx @@ -94,14 +94,14 @@ void SAL_CALL JavaInteractionHandler::handle( const Reference< XInteractionReque for ( i = 0; i < aSeqCont.getLength(); i++ ) { - abort = Reference< XInteractionAbort>::query( aSeqCont[i]); + abort.set( aSeqCont[i], UNO_QUERY ); if ( abort.is() ) break; } for ( i= 0; i < aSeqCont.getLength(); i++) { - retry= Reference<XInteractionRetry>::query( aSeqCont[i]); + retry.set( aSeqCont[i], UNO_QUERY ); if ( retry.is() ) break; } |