diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2016-04-19 11:28:47 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2016-04-19 11:29:02 +0200 |
commit | 7218011f134250a2ad3e03ff28d5665265c50605 (patch) | |
tree | d8acf04dfcd844e552f640df28aec648c030a40f /sc/inc | |
parent | 1abcf1bcbfa90ee1714b4d37fb38b639dabbcdfe (diff) |
sc: fix loplugin:passstuffbyref
Change-Id: I6716817b0ca439b63cc7b49eb7a611c2c15a9b00
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/listenercontext.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/inc/listenercontext.hxx b/sc/inc/listenercontext.hxx index d1576cb92149..1cb41a5c6f29 100644 --- a/sc/inc/listenercontext.hxx +++ b/sc/inc/listenercontext.hxx @@ -35,7 +35,7 @@ public: StartListeningContext(ScDocument& rDoc); StartListeningContext(ScDocument& rDoc, const std::shared_ptr<ColumnBlockPositionSet>& pSet); void setColumnSet( std::shared_ptr<const ColumnSet>& pColSet ); - std::shared_ptr<const ColumnSet> getColumnSet() const; + const std::shared_ptr<const ColumnSet>& getColumnSet() const; ScDocument& getDoc() { return mrDoc;} ColumnBlockPosition* getBlockPosition(SCTAB nTab, SCCOL nCol); |