Obsolete Members for <QtGlobal>

The following members of class <QtGlobal> are deprecated. They are provided to keep old source code working. We strongly advise against using them in new code.

Macros

(deprecated) Q_DECL_FINAL
(deprecated) Q_DECL_OVERRIDE
(deprecated) qMove(x)

Macro Documentation

[since 5.0] Q_DECL_FINAL

This macro is deprecated. We strongly advise against using it in new code.

This macro can be used to declare an overriding virtual or a class as "final", with Java semantics. Further-derived classes can then no longer override this virtual function, or inherit from this class, respectively.

It expands to "final".

The macro goes at the end of the function, usually after the const, if any:

    // more-derived classes no longer permitted to override this:
    virtual void MyWidget::paintEvent(QPaintEvent*) final;

For classes, it goes in front of the : in the class definition, if any:

    class QRect final { // cannot be derived from
        // ...
    };

This macro was introduced in Qt 5.0.

See also Q_DECL_OVERRIDE.

[since 5.0] Q_DECL_OVERRIDE

This macro is deprecated. We strongly advise against using it in new code.

This macro can be used to declare an overriding virtual function. Use of this markup will allow the compiler to generate an error if the overriding virtual function does not in fact override anything.

It expands to "override".

The macro goes at the end of the function, usually after the const, if any:

    // generate error if this doesn't actually override anything:
    virtual void MyWidget::paintEvent(QPaintEvent*) override;

This macro was introduced in Qt 5.0.

See also Q_DECL_FINAL.

qMove(x)

This macro is deprecated. We strongly advise against using it in new code.

Use std::move instead.

It expands to "std::move".

qMove takes an rvalue reference to its parameter x, and converts it to an xvalue.

© 2024 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.