Docs: update links to renamed example

Amends 5c2245cd66894cc27d6d4afcf13499db6434ee2e.

Pick-to: 6.5
Change-Id: I3956c0f5114bb5107c41a16c46d25c4aa82f3c53
Reviewed-by: Andreas Eliasson <andreas.eliasson@qt.io>
Reviewed-by: Safiyyah Moosa <safiyyah.moosa@qt.io>
This commit is contained in:
Volker Hilsheimer 2023-03-31 09:47:06 +02:00
parent d7aa6109b1
commit e8a711ef3b
7 changed files with 16 additions and 12 deletions

View File

@ -35,7 +35,7 @@
In addition, CBOR can add a "tag" to extend the meaning of the type. The
container types can contain basic types, string-like types and containers.
\sa {Cbordump Example}, {Convert Example}, {JSON Save Game Example}
\sa {Parsing and displaying CBOR data}, {Convert Example}, {JSON Save Game Example}
\section1 The CBOR Classes

View File

@ -31,7 +31,7 @@ using namespace QtCbor;
from those two, though there may be loss of information in some
conversions.
\sa QCborValue, QCborMap, QJsonArray, QList, {Cbordump Example},
\sa QCborValue, QCborMap, QJsonArray, QList, {Parsing and displaying CBOR data},
{Convert Example}, {JSON Save Game Example}
*/

View File

@ -179,8 +179,9 @@ QDataStream &operator>>(QDataStream &ds, QCborSimpleType &st)
\brief The QCborError class holds the error condition found while parsing or
validating a CBOR stream.
\sa QCborStreamReader, QCborValue, QCborParserError
\sa {Cbordump Example}, {Convert Example}, {JSON Save Game Example}
\sa QCborStreamReader, QCborValue, QCborParserError,
{Parsing and displaying CBOR data}, {Convert Example},
{JSON Save Game Example}
*/
/*!

View File

@ -47,8 +47,9 @@ using namespace QtCbor;
stringified using a one-way method that the conversion back to QCborMap
will not undo.
\sa QCborArray, QCborValue, QJsonDocument, QVariantMap, {Cbordump Example}
\sa {Convert Example}, {JSON Save Game Example}
\sa QCborArray, QCborValue, QJsonDocument, QVariantMap,
{Parsing and displaying CBOR data}, {Convert Example},
{JSON Save Game Example}
*/
/*!

View File

@ -150,8 +150,9 @@ static_assert(int(QCborStreamReader::Invalid) == CborInvalidType);
parsing from a QByteArray, or reparse(), if it is instead reading directly
a the QIDOevice that now has more data available (see setDevice()).
\sa QCborStreamWriter, QCborValue, QXmlStreamReader, {Cbordump Example}
\sa {Convert Example}, {JSON Save Game Example}
\sa QCborStreamWriter, QCborValue, QXmlStreamReader,
{Parsing and displaying CBOR data}, {Convert Example},
{JSON Save Game Example}
*/
/*!

View File

@ -174,7 +174,8 @@ Q_DECLARE_TYPEINFO(CborEncoder, Q_PRIMITIVE_TYPE);
\endlist
\sa QCborStreamReader, QCborValue, QXmlStreamWriter
\sa {Cbordump Example}, {Convert Example}, {JSON Save Game Example}
{Parsing and displaying CBOR data}, {Convert Example},
{JSON Save Game Example}
*/
class QCborStreamWriterPrivate

View File

@ -191,9 +191,9 @@ Q_DECL_UNUSED static constexpr quint64 MaximumPreallocatedElementCount =
array or map it refers to will be modified with the new value. In all other
aspects, its API is identical to QCborValue.
\sa QCborArray, QCborMap, QCborStreamReader, QCborStreamWriter
\sa QJsonValue, QJsonDocument, {Cbordump Example}, {Convert Example}
\sa {JSON Save Game Example}
\sa QCborArray, QCborMap, QCborStreamReader, QCborStreamWriter,
QJsonValue, QJsonDocument, {Convert Example}, {JSON Save Game Example}
{Parsing and displaying CBOR data}
*/
/*!