From db2f4d5e4637c0cc20dc21de085b7ad8d1cfc946 Mon Sep 17 00:00:00 2001 From: Volker Hilsheimer Date: Mon, 15 May 2023 12:42:51 +0200 Subject: [PATCH] Doc: fix links to examples Remove the xml prefix, only reference the example by title. The streambookmarks example is gone, so remove that link. Change-Id: Ie3a77be24f60fca9e8f9ef0323f0ea5ffc904075 Reviewed-by: Safiyyah Moosa Reviewed-by: Edward Welbourne --- examples/corelib/serialization/savegame/doc/src/savegame.qdoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/corelib/serialization/savegame/doc/src/savegame.qdoc b/examples/corelib/serialization/savegame/doc/src/savegame.qdoc index c8ca4159362..37a461d7bd5 100644 --- a/examples/corelib/serialization/savegame/doc/src/savegame.qdoc +++ b/examples/corelib/serialization/savegame/doc/src/savegame.qdoc @@ -35,8 +35,8 @@ serializing to another format — for example XML or QDataStream, which require passing a document-like object — or when the object identity is important (QObject subclasses, for example), other patterns may be more suitable. See the - \l{xml/dombookmarks} and \l{xml/streambookmarks} examples for XML, and the - implementation of \l QListWidgetItem::read() and \l QListWidgetItem::write() + \l{dombookmarks} example for XML, and the implementation of + \l QListWidgetItem::read() and \l QListWidgetItem::write() for idiomatic QDataStream serialization. The \c{print()} functions in this example are good examples of QTextStream serialization, even though they, of course, lack the deserialization side.