diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-30 11:29:18 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-10-30 13:52:29 +0200 |
commit | e10570565f02959c8b713d1e17f5810424ddb63d (patch) | |
tree | 04822382005d039c2981ab8093776284b7a80770 /dbaccess/source/ui/dlg/paramdialog.cxx | |
parent | 76cfcea67284c246e04efce836327ec0dd2bfb66 (diff) |
use uno::Reference::set method instead of assignment
Change-Id: I3d45914e349a4268204af84b95b53ccce7b9d544
Diffstat (limited to 'dbaccess/source/ui/dlg/paramdialog.cxx')
-rw-r--r-- | dbaccess/source/ui/dlg/paramdialog.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/ui/dlg/paramdialog.cxx b/dbaccess/source/ui/dlg/paramdialog.cxx index 7a3769df11d1..c1c0e77453c8 100644 --- a/dbaccess/source/ui/dlg/paramdialog.cxx +++ b/dbaccess/source/ui/dlg/paramdialog.cxx @@ -68,7 +68,7 @@ namespace dbaui set_height_request(200); if (rxContext.is()) - m_xFormatter = Reference< XNumberFormatter>( NumberFormatter::create( rxContext ), UNO_QUERY_THROW); + m_xFormatter.set( NumberFormatter::create( rxContext ), UNO_QUERY_THROW); else { OSL_FAIL("OParameterDialog::OParameterDialog: need a service factory!"); } |