diff options
author | Robert C. Helling <helling@atdotde.de> | 2019-03-18 21:32:14 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-03-18 19:40:32 -0700 |
commit | c7bb67c5bef01772a9e52dddccfa5f02d91393ff (patch) | |
tree | d032174cd0f5206de3063274d6a641a881c1dbe4 /profile-widget/ruleritem.h | |
parent | 4524e2b0b39f47996cd8acc0c938c47753f31854 (diff) | |
download | subsurface-c7bb67c5bef01772a9e52dddccfa5f02d91393ff.tar.gz |
Profile: pass by reference rather than by value for large struct
Addresses LGTM.com suggestion.
Signed-off-by: Robert C. Helling <helling@atdotde.de>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'profile-widget/ruleritem.h')
-rw-r--r-- | profile-widget/ruleritem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/profile-widget/ruleritem.h b/profile-widget/ruleritem.h index 3a6c59480..3462a5d35 100644 --- a/profile-widget/ruleritem.h +++ b/profile-widget/ruleritem.h @@ -37,7 +37,7 @@ public: explicit RulerItem2(); void recalculate(); - void setPlotInfo(struct plot_info pInfo); + void setPlotInfo(struct plot_info *pInfo); RulerNodeItem2 *sourceNode() const; RulerNodeItem2 *destNode() const; void setAxis(DiveCartesianAxis *time, DiveCartesianAxis *depth); |