summaryrefslogtreecommitdiffstats
path: root/tests/auto/qdoc/generatedoutput/testdata/tables/table-after-value.cpp
blob: f97118194571a5d6464a77da51f0b2000e204de7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only
#include "tableaftervalue.h"

/*!
    \class TableAfterValue
    \inmodule Test
    \brief Test that the \\table command can follow a \\value command.

    \section1 Background for this test content
    According to QTBUG-115720, whenever a \\value is followed by \\table, the
    contents of the two commands end up being merged. This is likely surprising.
    The bug report suggests a workaround, which is adding \\br between \\value
    and \\table.

    \sa TableAfterValue::Reproduces
*/

/*!
    \enum TableAfterValue::Reproduces

    \value Problem

    \table
    \row
    \li This table shouldn't be mangled by the previous \\value command.
    \endtable
*/