From 4b8a66f4899cb337899ec1d35058ab7fc1b1bc86 Mon Sep 17 00:00:00 2001 From: Tomaz Canabrava Date: Sat, 10 May 2014 22:07:02 -0300 Subject: When creating methods that pass QString, use const QString& This removes unecessary creation and destruction of the object making the code shine a bit more and be more fluffy. :) Signed-off-by: Tomaz Canabrava Signed-off-by: Dirk Hohndel --- qthelper.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'qthelper.h') diff --git a/qthelper.h b/qthelper.h index 648a68090..9d31f5a12 100644 --- a/qthelper.h +++ b/qthelper.h @@ -29,12 +29,12 @@ class DiveComputerList { public: DiveComputerList(); ~DiveComputerList(); - const DiveComputerNode *getExact(QString m, uint32_t d); - const DiveComputerNode *get(QString m); - void addDC(QString m, uint32_t d, QString n = "", QString s = "", QString f = ""); - void rmDC(QString m, uint32_t d); - DiveComputerNode matchDC(QString m, uint32_t d); - DiveComputerNode matchModel(QString m); + const DiveComputerNode *getExact(const QString& m, uint32_t d); + const DiveComputerNode *get(const QString& m); + void addDC(const QString& m, uint32_t d,const QString& n = QString(),const QString& s = QString(), const QString& f = QString()); + void rmDC(const QString& m, uint32_t d); + DiveComputerNode matchDC(const QString& m, uint32_t d); + DiveComputerNode matchModel(const QString& m); QMultiMap dcMap; QMultiMap dcWorkingMap; }; -- cgit v1.2.3-70-g09d2