Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
docprivate.cpp
Go to the documentation of this file.
1// Copyright (C) 2021 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
3#include "docprivate.h"
4
5#include "text.h"
6
7#include <QtCore/qhash.h>
8
10
11/*!
12 Deletes the DocPrivateExtra.
13 */
14DocPrivate::~DocPrivate()
15{
16 delete extra;
17}
18
19void DocPrivate::addAlso(const Text &also)
20{
21 m_alsoList.append(also);
22}
23
25{
26 if (extra == nullptr)
28}
29
30QT_END_NAMESPACE
DocPrivateExtra * extra
Definition docprivate.h:68
void constructExtra()
void addAlso(const Text &also)
Definition text.h:12
Combined button and popup list for selecting options.