diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-03-03 09:59:31 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-03-04 00:51:57 +0000 |
commit | c6223049651d6607101ef04271773e478a429c8a (patch) | |
tree | f2bfb8c976896009409ae47780c324d3a9b51c77 /cui | |
parent | 242ed97d9a74a08363e1306452bba20f06d673e4 (diff) |
V813: Decreased performance
Change-Id: Ica2563d9e8da15e19eb38246d4de54a1fcb75655
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/factory/dlgfact.cxx | 4 | ||||
-rw-r--r-- | cui/source/factory/dlgfact.hxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/cui/source/factory/dlgfact.cxx b/cui/source/factory/dlgfact.cxx index 69ebc3a696c2..1421e83a7295 100644 --- a/cui/source/factory/dlgfact.cxx +++ b/cui/source/factory/dlgfact.cxx @@ -1186,9 +1186,9 @@ AbstractTakeProgress * AbstractDialogFactory_Impl::CreateTakeProgressDialog( vcl VclAbstractDialog* AbstractDialogFactory_Impl::CreateScriptErrorDialog( - vcl::Window* pParent, ::com::sun::star::uno::Any aException ) + vcl::Window* pParent, const ::com::sun::star::uno::Any& rException) { - return new SvxScriptErrorDialog( pParent, aException ); + return new SvxScriptErrorDialog(pParent, rException); } AbstractScriptSelectorDialog* diff --git a/cui/source/factory/dlgfact.hxx b/cui/source/factory/dlgfact.hxx index 6737b94803b0..da68f13ea245 100644 --- a/cui/source/factory/dlgfact.hxx +++ b/cui/source/factory/dlgfact.hxx @@ -688,7 +688,7 @@ public: ) SAL_OVERRIDE; virtual VclAbstractDialog* CreateScriptErrorDialog( - vcl::Window* pParent, ::com::sun::star::uno::Any aException) SAL_OVERRIDE; + vcl::Window* pParent, const css::uno::Any& rException) SAL_OVERRIDE; virtual VclAbstractDialog* CreateSvxMacroAssignDlg( vcl::Window* _pParent, |