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
qqmltypemoduleversion.cpp
Go to the documentation of this file.
1// Copyright (C) 2019 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3// Qt-Security score:significant
4
6
8
9QQmlTypeModuleVersion::QQmlTypeModuleVersion()
10 : m_module(nullptr), m_minor(0)
11{
12}
13
15 : m_module(module), m_minor(version.minorVersion())
16{
17 Q_ASSERT(m_module);
18}
19
24
26{
27 m_module = o.m_module;
28 m_minor = o.m_minor;
29 return *this;
30}
31
32QT_END_NAMESPACE
QQmlTypeModuleVersion & operator=(const QQmlTypeModuleVersion &)
QQmlTypeModuleVersion(QQmlTypeModule *, QTypeRevision)
QQmlTypeModuleVersion(const QQmlTypeModuleVersion &)
Combined button and popup list for selecting options.