summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTopi Reinio <topi.reinio@qt.io>2019-02-13 12:51:11 +0100
committerTopi Reiniƶ <topi.reinio@qt.io>2019-02-13 14:29:34 +0000
commit313e6548b0393af9069b043f65ea6e6c0a546487 (patch)
tree6e62773f507cd800dc7dd76470ca6d2d27d7550f
parentda2f08af67916ce09daf6dea185a118e0f8bcd6b (diff)
downloadqtscript-313e6548b0393af9069b043f65ea6e6c0a546487.tar.gz
Doc: Remove unnecessary \fn commands
These are not required as the documentation is already adjacent to the correct function body. The \fn commands also caused some warnings in the form of clang diagnostic messages. Change-Id: I3fcce59b9e523fc8969dc6ef0440477886da8df7 Reviewed-by: Martin Smith <martin.smith@qt.io>
-rw-r--r--src/scripttools/debugging/qscriptbreakpointdata.cpp2
-rw-r--r--src/scripttools/debugging/qscriptdebuggercommand.cpp2
-rw-r--r--src/scripttools/debugging/qscriptdebuggerevent.cpp2
-rw-r--r--src/scripttools/debugging/qscriptdebuggerresponse.cpp2
-rw-r--r--src/scripttools/debugging/qscriptdebuggervalue.cpp2
-rw-r--r--src/scripttools/debugging/qscriptdebuggervalueproperty.cpp2
6 files changed, 0 insertions, 12 deletions
diff --git a/src/scripttools/debugging/qscriptbreakpointdata.cpp b/src/scripttools/debugging/qscriptbreakpointdata.cpp
index 6c7ed28..505a861 100644
--- a/src/scripttools/debugging/qscriptbreakpointdata.cpp
+++ b/src/scripttools/debugging/qscriptbreakpointdata.cpp
@@ -345,7 +345,6 @@ bool QScriptBreakpointData::operator!=(const QScriptBreakpointData &other) const
}
/*!
- \fn QDataStream &operator<<(QDataStream &stream, const QScriptBreakpointData &data)
\relates QScriptBreakpointData
Writes the given \a data to the specified \a stream.
@@ -366,7 +365,6 @@ QDataStream &operator<<(QDataStream &out, const QScriptBreakpointData &data)
}
/*!
- \fn QDataStream &operator>>(QDataStream &stream, QScriptBreakpointData &data)
\relates QScriptBreakpointData
Reads a QScriptBreakpointData from the specified \a stream into the
diff --git a/src/scripttools/debugging/qscriptdebuggercommand.cpp b/src/scripttools/debugging/qscriptdebuggercommand.cpp
index 2b8a26a..f264d28 100644
--- a/src/scripttools/debugging/qscriptdebuggercommand.cpp
+++ b/src/scripttools/debugging/qscriptdebuggercommand.cpp
@@ -656,7 +656,6 @@ QScriptDebuggerCommand QScriptDebuggerCommand::clearExceptionsCommand()
}
/*!
- \fn QDataStream &operator<<(QDataStream &stream, const QScriptDebuggerCommand &command)
\relates QScriptDebuggerCommand
Writes the given \a command to the specified \a stream.
@@ -675,7 +674,6 @@ QDataStream &operator<<(QDataStream &out, const QScriptDebuggerCommand &command)
}
/*!
- \fn QDataStream &operator>>(QDataStream &stream, QScriptDebuggerCommand &command)
\relates QScriptDebuggerCommand
Reads a QScriptDebuggerCommand from the specified \a stream into the
diff --git a/src/scripttools/debugging/qscriptdebuggerevent.cpp b/src/scripttools/debugging/qscriptdebuggerevent.cpp
index efeb979..e4c59ff 100644
--- a/src/scripttools/debugging/qscriptdebuggerevent.cpp
+++ b/src/scripttools/debugging/qscriptdebuggerevent.cpp
@@ -267,7 +267,6 @@ bool QScriptDebuggerEvent::operator!=(const QScriptDebuggerEvent &other) const
}
/*!
- \fn QDataStream &operator<<(QDataStream &stream, const QScriptDebuggerEvent &event)
\relates QScriptDebuggerEvent
Writes the given \a event to the specified \a stream.
@@ -286,7 +285,6 @@ QDataStream &operator<<(QDataStream &out, const QScriptDebuggerEvent &event)
}
/*!
- \fn QDataStream &operator>>(QDataStream &stream, QScriptDebuggerEvent &event)
\relates QScriptDebuggerEvent
Reads a QScriptDebuggerEvent from the specified \a stream into the
diff --git a/src/scripttools/debugging/qscriptdebuggerresponse.cpp b/src/scripttools/debugging/qscriptdebuggerresponse.cpp
index ee588ef..7eb4c18 100644
--- a/src/scripttools/debugging/qscriptdebuggerresponse.cpp
+++ b/src/scripttools/debugging/qscriptdebuggerresponse.cpp
@@ -310,7 +310,6 @@ bool QScriptDebuggerResponse::operator!=(const QScriptDebuggerResponse &other) c
}
/*!
- \fn QDataStream &operator<<(QDataStream &stream, const QScriptDebuggerResponse &response)
\relates QScriptDebuggerResponse
Writes the given \a response to the specified \a stream.
@@ -325,7 +324,6 @@ QDataStream &operator<<(QDataStream &out, const QScriptDebuggerResponse &respons
}
/*!
- \fn QDataStream &operator>>(QDataStream &stream, QScriptDebuggerResponse &response)
\relates QScriptDebuggerResponse
Reads a QScriptDebuggerResponse from the specified \a stream into the
diff --git a/src/scripttools/debugging/qscriptdebuggervalue.cpp b/src/scripttools/debugging/qscriptdebuggervalue.cpp
index 2d0bcc2..46aba91 100644
--- a/src/scripttools/debugging/qscriptdebuggervalue.cpp
+++ b/src/scripttools/debugging/qscriptdebuggervalue.cpp
@@ -327,7 +327,6 @@ bool QScriptDebuggerValue::operator!=(const QScriptDebuggerValue &other) const
}
/*!
- \fn QDataStream &operator<<(QDataStream &stream, const QScriptDebuggerValue &value)
\relates QScriptDebuggerValue
Writes the given \a value to the specified \a stream.
@@ -357,7 +356,6 @@ QDataStream &operator<<(QDataStream &out, const QScriptDebuggerValue &value)
}
/*!
- \fn QDataStream &operator>>(QDataStream &stream, QScriptDebuggerValue &value)
\relates QScriptDebuggerValue
Reads a QScriptDebuggerValue from the specified \a stream into the
diff --git a/src/scripttools/debugging/qscriptdebuggervalueproperty.cpp b/src/scripttools/debugging/qscriptdebuggervalueproperty.cpp
index f0c86d2..f46d3dd 100644
--- a/src/scripttools/debugging/qscriptdebuggervalueproperty.cpp
+++ b/src/scripttools/debugging/qscriptdebuggervalueproperty.cpp
@@ -175,7 +175,6 @@ bool QScriptDebuggerValueProperty::isValid() const
}
/*!
- \fn QDataStream &operator<<(QDataStream &stream, const QScriptDebuggerValueProperty &property)
\relates QScriptDebuggerValueProperty
Writes the given \a property to the specified \a stream.
@@ -190,7 +189,6 @@ QDataStream &operator<<(QDataStream &out, const QScriptDebuggerValueProperty &pr
}
/*!
- \fn QDataStream &operator>>(QDataStream &stream, QScriptDebuggerValueProperty &property)
\relates QScriptDebuggerValueProperty
Reads a QScriptDebuggerValueProperty from the specified \a stream into the