summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools
diff options
context:
space:
mode:
authorMartin Smith <msmith@trolltech.com>2010-03-17 12:14:28 (GMT)
committerMartin Smith <msmith@trolltech.com>2010-03-17 12:14:28 (GMT)
commit99f3df7982fc6f5c3016c828e01cea3fe5a596b7 (patch)
treeb4ffc40a657d8ff041a1e98f46787ba8d00e7380 /src/corelib/tools
parent2cb7aa3174bd3868f32f76a882faf59bc4d4a0b1 (diff)
downloadQt-99f3df7982fc6f5c3016c828e01cea3fe5a596b7.zip
Qt-99f3df7982fc6f5c3016c828e01cea3fe5a596b7.tar.gz
Qt-99f3df7982fc6f5c3016c828e01cea3fe5a596b7.tar.bz2
Added missing "const" for mac.
Diffstat (limited to 'src/corelib/tools')
-rw-r--r--src/corelib/tools/qelapsedtimer_mac.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/tools/qelapsedtimer_mac.cpp b/src/corelib/tools/qelapsedtimer_mac.cpp
index 4a62761..8fceb49 100644
--- a/src/corelib/tools/qelapsedtimer_mac.cpp
+++ b/src/corelib/tools/qelapsedtimer_mac.cpp
@@ -103,7 +103,7 @@ qint64 QElapsedTimer::elapsed() const
return absoluteToMSecs(cpu_time - t1);
}
-qint64 QElapsedTimer::msecsSinceReference()
+qint64 QElapsedTimer::msecsSinceReference() const
{
return absoluteToMSecs(t1);
}