summaryrefslogtreecommitdiff
path: root/vcl/source/window/dndlcon.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-06-18 00:01:50 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-06-20 11:08:37 +0100
commite7355a7d5c1c9f35de4758cd74f29ded768c65fe (patch)
treee2926966a8a48b07b06b32760270910fddefea00 /vcl/source/window/dndlcon.cxx
parentbbc355c39f52397ce98081bfc090e366a73f0c91 (diff)
catch by const reference
Diffstat (limited to 'vcl/source/window/dndlcon.cxx')
-rw-r--r--vcl/source/window/dndlcon.cxx30
1 files changed, 10 insertions, 20 deletions
diff --git a/vcl/source/window/dndlcon.cxx b/vcl/source/window/dndlcon.cxx
index 977e8611e70a..08c8e4d24c3b 100644
--- a/vcl/source/window/dndlcon.cxx
+++ b/vcl/source/window/dndlcon.cxx
@@ -193,8 +193,7 @@ sal_uInt32 DNDListenerContainer::fireDropEvent( const Reference< XDropTargetDrop
nRet++;
}
}
-
- catch( RuntimeException )
+ catch (const RuntimeException&)
{
pContainer->removeInterface( xElement );
}
@@ -209,8 +208,7 @@ sal_uInt32 DNDListenerContainer::fireDropEvent( const Reference< XDropTargetDrop
{
context->rejectDrop();
}
-
- catch( RuntimeException exc )
+ catch (const RuntimeException&)
{
}
}
@@ -253,8 +251,7 @@ sal_uInt32 DNDListenerContainer::fireDragExitEvent()
nRet++;
}
}
-
- catch( RuntimeException )
+ catch (const RuntimeException&)
{
pContainer->removeInterface( xElement );
}
@@ -305,8 +302,7 @@ sal_uInt32 DNDListenerContainer::fireDragOverEvent( const Reference< XDropTarget
nRet++;
}
}
-
- catch( RuntimeException )
+ catch (const RuntimeException&)
{
pContainer->removeInterface( xElement );
}
@@ -321,8 +317,7 @@ sal_uInt32 DNDListenerContainer::fireDragOverEvent( const Reference< XDropTarget
{
context->rejectDrag();
}
-
- catch( RuntimeException exc )
+ catch (const RuntimeException&)
{
}
}
@@ -373,8 +368,7 @@ sal_uInt32 DNDListenerContainer::fireDragEnterEvent( const Reference< XDropTarge
nRet++;
}
}
-
- catch( RuntimeException )
+ catch (const RuntimeException&)
{
pContainer->removeInterface( xElement );
}
@@ -389,8 +383,7 @@ sal_uInt32 DNDListenerContainer::fireDragEnterEvent( const Reference< XDropTarge
{
context->rejectDrag();
}
-
- catch( RuntimeException exc )
+ catch (const RuntimeException&)
{
}
}
@@ -440,8 +433,7 @@ sal_uInt32 DNDListenerContainer::fireDropActionChangedEvent( const Reference< XD
nRet++;
}
}
-
- catch( RuntimeException )
+ catch (const RuntimeException&)
{
pContainer->removeInterface( xElement );
}
@@ -456,8 +448,7 @@ sal_uInt32 DNDListenerContainer::fireDropActionChangedEvent( const Reference< XD
{
context->rejectDrag();
}
-
- catch( RuntimeException exc )
+ catch (const RuntimeException&)
{
}
}
@@ -502,8 +493,7 @@ sal_uInt32 DNDListenerContainer::fireDragGestureEvent( sal_Int8 dragAction, sal_
nRet++;
}
}
-
- catch( RuntimeException )
+ catch (const RuntimeException&)
{
pContainer->removeInterface( xElement );
}