diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-19 18:07:45 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-19 18:07:45 +0200 |
commit | d60d70d92cec7bbc471f8f0c653d443282227d34 (patch) | |
tree | fec3918fe3bf0dc2abc58208c9a6b38ba3ab498b /sd | |
parent | 3057b5cdb989d44613518900b25ebad8b7c600a2 (diff) |
warning C4101: 'rException' : unreferenced local variable
Change-Id: I64d3ff11d635c8600116867e2ea95442035adac0
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/table/TableDesignPane.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/table/TableDesignPane.cxx b/sd/source/ui/table/TableDesignPane.cxx index 5e06d2cacb96..07b117bdc0d2 100644 --- a/sd/source/ui/table/TableDesignPane.cxx +++ b/sd/source/ui/table/TableDesignPane.cxx @@ -812,7 +812,7 @@ VclPtr<vcl::Window> createTableDesignPanel( vcl::Window* pParent, ViewShellBase& { pRet = VclPtr<TableDesignPane>::Create( pParent, rBase ); } - catch (const uno::Exception& rException) + catch (const uno::Exception&) { } return pRet; |