diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2011-12-25 15:08:11 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2011-12-25 15:09:58 +0900 |
commit | 8cc98837d30d818fe3a2e4063798c7451044eb9c (patch) | |
tree | 2da46809bc97a39489c6d57c8c855ebefb58899d /sd/source/ui/func | |
parent | 8b18c70b994e8239f2f0dfd549fcc27feceb413c (diff) |
catch exception by constant reference
Diffstat (limited to 'sd/source/ui/func')
-rw-r--r-- | sd/source/ui/func/fusel.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sd/source/ui/func/fusel.cxx b/sd/source/ui/func/fusel.cxx index 633f0684f6e4..18edbb2c1f4f 100644 --- a/sd/source/ui/func/fusel.cxx +++ b/sd/source/ui/func/fusel.cxx @@ -1329,9 +1329,8 @@ sal_Bool FuSelection::AnimateObj(SdrObject* pObj, const Point& rPos) mxPlayer.set( avmedia::MediaWindow::createPlayer( pInfo->GetBookmark()), uno::UNO_QUERY_THROW ); mxPlayer->start(); } - catch( uno::Exception& e ) + catch( uno::Exception& ) { - (void)e; } bAnimated = sal_True; } |