From 432a75604819d9ed4143036c7cafa72106c768e0 Mon Sep 17 00:00:00 2001 From: Konstantin Ritt Date: Tue, 18 Oct 2011 16:44:54 +0200 Subject: replace 'const QChar &' with 'QChar ' where appropriate as QChar is actually an ushort and there is no point in taking its address. Merge-request: 69 Change-Id: Idcc9d621e5627514ade006aa12a789a88929d48b Reviewed-by: Olivier Goffart --- src/corelib/io/qtextstream.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/corelib/io/qtextstream.cpp') diff --git a/src/corelib/io/qtextstream.cpp b/src/corelib/io/qtextstream.cpp index a6d58c760f..dd0ab85119 100644 --- a/src/corelib/io/qtextstream.cpp +++ b/src/corelib/io/qtextstream.cpp @@ -393,7 +393,7 @@ public: }; inline bool getChar(QChar *ch); - inline void ungetChar(const QChar &ch); + inline void ungetChar(QChar ch); NumberParsingStatus getNumber(qulonglong *l); bool getReal(double *f); @@ -943,7 +943,7 @@ inline bool QTextStreamPrivate::getChar(QChar *ch) /*! \internal */ -inline void QTextStreamPrivate::ungetChar(const QChar &ch) +inline void QTextStreamPrivate::ungetChar(QChar ch) { if (string) { if (stringOffset == 0) -- cgit v1.2.3