aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/debugger
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@digia.com>2014-03-24 17:34:04 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-03-24 20:34:21 +0100
commitdab18e6f5f58be5717b8efb4759d0e0712eb036d (patch)
tree9d2105a2b3f3274ad40655cc05114ee827fe6787 /src/qml/debugger
parent03a0773b1001728ca52d6cd5429e73445274ae81 (diff)
Fix some documentation errors.
Change-Id: I5d4b3e26742202c4b634d0001fd3658c7263c50a Reviewed-by: Alan Alpert <aalpert@blackberry.com>
Diffstat (limited to 'src/qml/debugger')
-rw-r--r--src/qml/debugger/qqmlabstractprofileradapter.cpp3
-rw-r--r--src/qml/debugger/qqmlprofiler.cpp6
2 files changed, 5 insertions, 4 deletions
diff --git a/src/qml/debugger/qqmlabstractprofileradapter.cpp b/src/qml/debugger/qqmlabstractprofileradapter.cpp
index d7168428f6..01d1fcc4fe 100644
--- a/src/qml/debugger/qqmlabstractprofileradapter.cpp
+++ b/src/qml/debugger/qqmlabstractprofileradapter.cpp
@@ -45,6 +45,7 @@ QT_BEGIN_NAMESPACE
/*!
* \class QQmlAbstractProfilerAdapter
+ * \inmodule QtQml
* Abstract base class for all adapters between profilers and the QQmlProfilerService. Adapters have
* to retrieve profiler-specific data and convert it to the format sent over the wire. Adapters must
* live in the QDebugServer thread but the actual profilers can live in different threads. The
@@ -101,7 +102,7 @@ void QQmlAbstractProfilerAdapter::stopProfiling() {
}
/*!
- * \fn bool QQmlAbstractProfilerAdapter::isRunning()
+ * \fn bool QQmlAbstractProfilerAdapter::isRunning() const
* Returns if the profiler is currently running. The profiler is considered to be running after
* \c startProfiling() has been called until \c stopProfiling() is called. That is independent of
* \c waiting. The profiler may be running and waiting at the same time.
diff --git a/src/qml/debugger/qqmlprofiler.cpp b/src/qml/debugger/qqmlprofiler.cpp
index f25c931d63..a0b39744a0 100644
--- a/src/qml/debugger/qqmlprofiler.cpp
+++ b/src/qml/debugger/qqmlprofiler.cpp
@@ -165,7 +165,7 @@ void QQmlProfiler::reportData()
* If profiling is enabled clears the current range data, then stops the
* profiler previously running in the foreground if any, then starts a new one
* in the foreground, setting the given location. \a url is the URL of
- * file being executed, \line line is the current line in in that file, and
+ * file being executed, \a line is the current line in in that file, and
* \a column is the current column in that file.
*/
@@ -183,7 +183,7 @@ void QQmlProfiler::reportData()
*/
/*!
- * \fn void QQmlVmeProfiler::clear()
+ * \fn void QQmlVmeProfiler::clear(bool stopProfiling = false)
* Stops the currently running (foreground and background) profilers and removes all saved
* data about paused profilers.
*/
@@ -198,7 +198,7 @@ void QQmlProfiler::reportData()
* Stops the profiler currently running in the foreground, if any and puts the
* next profiler from the background in its place if there are any profilers in
* the background. Additionally the rangeLocation is set. \a url is the URL of
- * file being executed, \line line is the current line in in that file, and
+ * file being executed, \a line is the current line in in that file, and
* \a column is the current column in that file.
*/