diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-07-07 15:56:45 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-07-07 18:59:55 +0200 |
commit | 303dd4af5e32c4dc7af76064449317cc2b2affe0 (patch) | |
tree | 2050a163041141ccb166a6d455ac38bdb62c9042 /dbaccess/source/ui | |
parent | 269a888905bcee0b773b1206766e838b211f82a2 (diff) |
loplugin:passstuffbyref also for {css::uno,rtl}::Reference
Change-Id: I8726896e20b6a6c122ffbfbc4213856f826bd8c7
Diffstat (limited to 'dbaccess/source/ui')
-rw-r--r-- | dbaccess/source/ui/browser/sbagrid.cxx | 2 | ||||
-rw-r--r-- | dbaccess/source/ui/inc/ConnectionLine.hxx | 2 | ||||
-rw-r--r-- | dbaccess/source/ui/inc/sbagrid.hxx | 2 | ||||
-rw-r--r-- | dbaccess/source/ui/querydesign/ConnectionLine.cxx | 2 | ||||
-rw-r--r-- | dbaccess/source/ui/querydesign/QueryDesignFieldUndoAct.hxx | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/dbaccess/source/ui/browser/sbagrid.cxx b/dbaccess/source/ui/browser/sbagrid.cxx index 5a7f4b952683..fdd1299f0902 100644 --- a/dbaccess/source/ui/browser/sbagrid.cxx +++ b/dbaccess/source/ui/browser/sbagrid.cxx @@ -713,7 +713,7 @@ void SbaGridHeader::PostExecuteColumnContextMenu(sal_uInt16 nColId, PopupMenu& r } // SbaGridControl -SbaGridControl::SbaGridControl(Reference< XComponentContext > _rM, +SbaGridControl::SbaGridControl(Reference< XComponentContext > const & _rM, vcl::Window* pParent, FmXGridPeer* _pPeer, WinBits nBits) :FmGridControl(_rM,pParent, _pPeer, nBits) ,m_pMasterListener(nullptr) diff --git a/dbaccess/source/ui/inc/ConnectionLine.hxx b/dbaccess/source/ui/inc/ConnectionLine.hxx index 3e0590fcea4c..f8d16a4b1608 100644 --- a/dbaccess/source/ui/inc/ConnectionLine.hxx +++ b/dbaccess/source/ui/inc/ConnectionLine.hxx @@ -46,7 +46,7 @@ namespace dbaui Point m_aSourceDescrLinePos, m_aDestDescrLinePos; public: - OConnectionLine( OTableConnection* pConn, OConnectionLineDataRef pLineData ); + OConnectionLine( OTableConnection* pConn, OConnectionLineDataRef const & pLineData ); OConnectionLine( const OConnectionLine& rLine ); virtual ~OConnectionLine(); diff --git a/dbaccess/source/ui/inc/sbagrid.hxx b/dbaccess/source/ui/inc/sbagrid.hxx index 6b292c79cfa8..54af4da747dd 100644 --- a/dbaccess/source/ui/inc/sbagrid.hxx +++ b/dbaccess/source/ui/inc/sbagrid.hxx @@ -223,7 +223,7 @@ namespace dbaui bool m_bActivatingForDrop; public: - SbaGridControl(css::uno::Reference< css::uno::XComponentContext >,Window* pParent, FmXGridPeer* _pPeer, WinBits nBits = WB_TABSTOP); + SbaGridControl(css::uno::Reference< css::uno::XComponentContext > const & _rM, Window* pParent, FmXGridPeer* _pPeer, WinBits nBits = WB_TABSTOP); virtual ~SbaGridControl(); virtual void dispose() override; diff --git a/dbaccess/source/ui/querydesign/ConnectionLine.cxx b/dbaccess/source/ui/querydesign/ConnectionLine.cxx index 4f078f9ce4f5..0bd4d514c74b 100644 --- a/dbaccess/source/ui/querydesign/ConnectionLine.cxx +++ b/dbaccess/source/ui/querydesign/ConnectionLine.cxx @@ -110,7 +110,7 @@ namespace } // class OConnectionLine -OConnectionLine::OConnectionLine( OTableConnection* _pConn, OConnectionLineDataRef _pLineData ) +OConnectionLine::OConnectionLine( OTableConnection* _pConn, OConnectionLineDataRef const & _pLineData ) : m_pTabConn( _pConn ) , m_pData( _pLineData ) { diff --git a/dbaccess/source/ui/querydesign/QueryDesignFieldUndoAct.hxx b/dbaccess/source/ui/querydesign/QueryDesignFieldUndoAct.hxx index cbd54cc5d2e6..31552c173e85 100644 --- a/dbaccess/source/ui/querydesign/QueryDesignFieldUndoAct.hxx +++ b/dbaccess/source/ui/querydesign/QueryDesignFieldUndoAct.hxx @@ -94,7 +94,7 @@ namespace dbaui public: OTabFieldUndoAct(OSelectionBrowseBox* pSelBrwBox, sal_uInt16 nCommentID) : OQueryDesignFieldUndoAct(pSelBrwBox, nCommentID) { } - void SetTabFieldDescr(OTableFieldDescRef pDescription) { pDescr = pDescription; } + void SetTabFieldDescr(OTableFieldDescRef const & pDescription) { pDescr = pDescription; } }; // OTabFieldDelUndoAct - undo class to delete a field |