diff options
author | Topi Reinio <topi.reinio@qt.io> | 2018-04-13 10:54:20 +0200 |
---|---|---|
committer | Topi Reiniƶ <topi.reinio@qt.io> | 2018-04-13 12:00:01 +0000 |
commit | c2657d346455a5a7821fbfbe3b1107d7cf9b0949 (patch) | |
tree | 03fdb9bde5c41bf60607550326d83528e7e2f7fa /src/scripttools/debugging/qscriptdebugger.cpp | |
parent | 781c745277f9b4faa87d341b10ec0ca46eb45a73 (diff) |
Doc: Fix documentation warningsv5.11.0-beta4
Use complete function signatures for \fn commands (including template
specifiers) as Clang parser now reads them.
Convert internal class documentation comments to standard C-style
comments.
Change-Id: Ie67eb054171139db12f7e74d077b7dc8453582df
Reviewed-by: Martin Smith <martin.smith@qt.io>
Diffstat (limited to 'src/scripttools/debugging/qscriptdebugger.cpp')
-rw-r--r-- | src/scripttools/debugging/qscriptdebugger.cpp | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/src/scripttools/debugging/qscriptdebugger.cpp b/src/scripttools/debugging/qscriptdebugger.cpp index 381d108..5f589d4 100644 --- a/src/scripttools/debugging/qscriptdebugger.cpp +++ b/src/scripttools/debugging/qscriptdebugger.cpp @@ -135,7 +135,6 @@ static bool scriptDebuggerEventCallback(void **data) \brief The QScriptDebugger class provides a Qt Script debugger. \ingroup script - */ class QScriptDebuggerPrivate @@ -335,7 +334,7 @@ QPixmap QScriptDebuggerPrivate::pixmap(const QString &path) return QPixmap(prefix + path); } -/*! +/* \reimp */ int QScriptDebuggerPrivate::scheduleJob(QScriptDebuggerJob *job) @@ -350,7 +349,7 @@ int QScriptDebuggerPrivate::scheduleJob(QScriptDebuggerJob *job) return id; } -/*! +/* \reimp */ void QScriptDebuggerPrivate::finishJob(QScriptDebuggerJob *job) @@ -363,7 +362,7 @@ void QScriptDebuggerPrivate::finishJob(QScriptDebuggerJob *job) maybeStartNewJob(); } -/*! +/* \reimp */ void QScriptDebuggerPrivate::hibernateUntilEvaluateFinished(QScriptDebuggerJob *job) @@ -373,7 +372,7 @@ void QScriptDebuggerPrivate::hibernateUntilEvaluateFinished(QScriptDebuggerJob * activeJobHibernating = true; } -/*! +/* Starts a new job if appropriate. */ void QScriptDebuggerPrivate::maybeStartNewJob() @@ -384,7 +383,7 @@ void QScriptDebuggerPrivate::maybeStartNewJob() activeJob->start(); } -/*! +/* \reimp */ int QScriptDebuggerPrivate::scheduleCommand( @@ -405,7 +404,7 @@ int QScriptDebuggerPrivate::scheduleCommand( return id; } -/*! +/* \reimp */ void QScriptDebuggerPrivate::handleResponse( @@ -478,7 +477,7 @@ void QScriptDebuggerPrivate::handleResponse( realHandler->handleResponse(response, commandId); } -/*! +/* \reimp Handles a debugger event from the frontend. @@ -668,7 +667,7 @@ private: QStringList m_path; }; -/*! +/* \reimp */ void QScriptDebuggerPrivate::showToolTip(const QPoint &pos, int frameIndex, @@ -684,7 +683,7 @@ void QScriptDebuggerPrivate::showToolTip(const QPoint &pos, int frameIndex, scheduleJob(job); } -/*! +/* \reimp */ QScriptCompletionTaskInterface *QScriptDebuggerPrivate::createCompletionTask( @@ -695,7 +694,7 @@ QScriptCompletionTaskInterface *QScriptDebuggerPrivate::createCompletionTask( (options & QScriptCompletionProviderInterface::ConsoleCommandCompletion) ? console : 0); } -/*! +/* Slot called when a line has been entered in the console widget. */ void QScriptDebuggerPrivate::_q_onLineEntered(const QString &contents) @@ -710,7 +709,7 @@ void QScriptDebuggerPrivate::_q_onLineEntered(const QString &contents) } } -/*! +/* Slot called when the current index has changed in the stack widget. */ void QScriptDebuggerPrivate::_q_onCurrentFrameChanged(int frameIndex) @@ -719,7 +718,7 @@ void QScriptDebuggerPrivate::_q_onCurrentFrameChanged(int frameIndex) selectScriptForFrame(frameIndex); } -/*! +/* Slot called when the current script has changed in the scripts widget. */ void QScriptDebuggerPrivate::_q_onCurrentScriptChanged(qint64 scriptId) |