Doc: Fix documentation warnings qtbase
Task-number: QTBUG-90662 Change-Id: If31847f8f2b8b57a8a8624d0406a030b5752f1c8 Reviewed-by: Paul Wicking <paul.wicking@qt.io>bb10
parent
f731802ba8
commit
27f2ef24cd
|
|
@ -709,7 +709,7 @@ QString QPropertyBindingError::description() const
|
|||
\fn QUntypedBindable::QUntypedBindable()
|
||||
|
||||
Default-constructs a QUntypedBindable. It is in an invalid state.
|
||||
\sa isValid()
|
||||
\sa isValid()
|
||||
*/
|
||||
|
||||
/*!
|
||||
|
|
@ -723,14 +723,14 @@ QString QPropertyBindingError::description() const
|
|||
*/
|
||||
|
||||
/*!
|
||||
\fn bool QUntypedBindble::isValid()
|
||||
\fn bool QUntypedBindable::isValid()
|
||||
|
||||
Returns true if the QUntypedBindable is valid. Methods called on an invalid
|
||||
QUntypedBindable generally have no effect, unless otherwise noted.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn bool QUntypedBindble::isReadOnly()
|
||||
\fn bool QUntypedBindable::isReadOnly()
|
||||
\since 6.1
|
||||
|
||||
Returns true if the QUntypedBindable is read-only.
|
||||
|
|
@ -767,7 +767,7 @@ QString QPropertyBindingError::description() const
|
|||
Installs \a f as a change handler. Whenever the underlying property changes, \a f will be called, as
|
||||
long as the returned \c QPropertyChangeHandler and the property are kept alive.
|
||||
|
||||
\sa template<typename T> QProperty::onValueChanged(), subscribe()
|
||||
\sa onValueChanged(), subscribe()
|
||||
*/
|
||||
|
||||
/*!
|
||||
|
|
|
|||
|
|
@ -1923,15 +1923,15 @@ QMatrix4x4 QMatrix4x4::orthonormalInverse() const
|
|||
|
||||
Normally the QMatrix4x4 class keeps track of this special type internally
|
||||
as operations are performed. However, if the matrix is modified
|
||||
directly with \l {QMatrix4x4::}{operator()()} or data(), then
|
||||
QMatrix4x4 will lose track of the special type and will revert to the
|
||||
safest but least efficient operations thereafter.
|
||||
directly with operator()(int, int) or data(), then QMatrix4x4 will
|
||||
lose track of the special type and will revert to the safest but least
|
||||
efficient operations thereafter.
|
||||
|
||||
By calling optimize() after directly modifying the matrix,
|
||||
the programmer can force QMatrix4x4 to recover the special type if
|
||||
the elements appear to conform to one of the known optimized types.
|
||||
|
||||
\sa {QMatrix4x4::}{operator()()}, data(), translate()
|
||||
\sa operator()(int, int), data(), translate()
|
||||
*/
|
||||
void QMatrix4x4::optimize()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1663,7 +1663,7 @@ QList<QSsl::ImplementedClass> QSslSocket::implementedClasses(const QString &back
|
|||
|
||||
/*!
|
||||
\since 6.1
|
||||
Returns true if a class \cl is implemented by the backend named \a backendName. An empty
|
||||
Returns true if a class \a cl is implemented by the backend named \a backendName. An empty
|
||||
\a backendName is understood as a query about the currently active backend.
|
||||
|
||||
\sa implementedClasses()
|
||||
|
|
|
|||
|
|
@ -116,7 +116,7 @@
|
|||
\target DriverStandalone
|
||||
\section2 Compile only a specific sql driver
|
||||
|
||||
A typical qt-cmake run (in this case to configure for MySQL) looks like this:
|
||||
A typical \c qt-cmake run (in this case to configure for MySQL) looks like this:
|
||||
|
||||
\snippet code/doc_src_sql-driver.qdoc 41
|
||||
\note As mentioned in \l{#DriverWithQt}{Compile Qt with a specific driver},
|
||||
|
|
@ -185,7 +185,7 @@
|
|||
you may need to install a package which is usually called "mysql-devel"
|
||||
or "mariadb-devel".
|
||||
|
||||
Tell \l qt-cmake where to find the MySQL / MariaDB header files and shared
|
||||
Tell \c qt-cmake where to find the MySQL / MariaDB header files and shared
|
||||
libraries (here it is assumed that MySQL / MariaDB is installed in
|
||||
\c{/usr/local}) and build:
|
||||
|
||||
|
|
@ -564,13 +564,14 @@
|
|||
|
||||
SQLite version 3 is included as a third-party library within Qt.
|
||||
It can be built by passing the \c{-DFEATURE_system_sqlite=OFF} parameter to the
|
||||
qt-cmake command line.
|
||||
\c qt-cmake command line.
|
||||
|
||||
If you do not want to use the SQLite library included with Qt, you
|
||||
can pass \c{-DFEATURE_system_sqlite=ON} to the qt-cmake command line to use the SQLite
|
||||
libraries of the operating system. This is recommended whenever possible,
|
||||
as it reduces the installation size and removes one component for which
|
||||
you need to track security advisories.
|
||||
can pass \c{-DFEATURE_system_sqlite=ON} to the \c qt-cmake command
|
||||
line to use the SQLite libraries of the operating system. This is
|
||||
recommended whenever possible, as it reduces the installation size
|
||||
and removes one component for which you need to track security
|
||||
advisories.
|
||||
|
||||
On Unix and \macos (replace \c $SQLITE with the directory where
|
||||
SQLite resides):
|
||||
|
|
|
|||
|
|
@ -97,7 +97,7 @@ QT_BEGIN_NAMESPACE
|
|||
|
||||
\value LET_Failure
|
||||
|
||||
\value LET_Error
|
||||
\value LET_Message
|
||||
|
||||
\value LET_TestCase
|
||||
|
||||
|
|
@ -106,6 +106,8 @@ QT_BEGIN_NAMESPACE
|
|||
\value LET_Benchmark
|
||||
|
||||
\value LET_SystemError
|
||||
|
||||
\value LET_SystemOutput
|
||||
*/
|
||||
|
||||
QTestElementAttribute::QTestElementAttribute() = default;
|
||||
|
|
|
|||
Loading…
Reference in New Issue