summaryrefslogtreecommitdiff
path: root/include/formula
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-14 13:23:06 +0200
committerNoel Grandin <noel@peralex.com>2014-03-17 09:00:07 +0200
commitd593f45886cbe6ee9d54af1cf84b11a9004efc61 (patch)
tree5423a2fac77c02b2a5b18b6b282bbcfdeff0c944 /include/formula
parentc58fe8c85f159c6b456223b51981f411e312e33b (diff)
filter,formula: prefer passing OUString by reference
Change-Id: I332f1a593853283b72ecf4dfd82b36cc091661b4
Diffstat (limited to 'include/formula')
-rw-r--r--include/formula/formdata.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/formula/formdata.hxx b/include/formula/formdata.hxx
index 63033f4258af..08271191befb 100644
--- a/include/formula/formdata.hxx
+++ b/include/formula/formdata.hxx
@@ -55,7 +55,7 @@ public:
inline void SetEdFocus( sal_uInt16 nNew ) { nEdFocus = nNew; }
inline void SetUndoStr( const OUString& rNew ) { aUndoStr = rNew; }
inline void SetMatrixFlag(bool bNew) { bMatrix=bNew;}
- inline void SetUniqueId(const OString nNew) { aUniqueId=nNew;}
+ inline void SetUniqueId(const OString& nNew) { aUniqueId=nNew;}
inline void SetSelection(const Selection& aSel) { aSelection=aSel;}
protected:
void Reset();