QPicture: mark deprecated functions with the QT_DEPRECATED macros
These functions should never be used, they've been deprecated since Qt 5.0. Change-Id: I71744eba3ff3b94487dd040ddd6af4fb11f382b2 Reviewed-by: Olivier Goffart (Woboq GmbH) <ogoffart@woboq.com>
This commit is contained in:
parent
3d77c3629c
commit
4de4051406
@ -1194,6 +1194,7 @@ QT_BEGIN_INCLUDE_NAMESPACE
|
||||
#include "qpictureformatplugin.h"
|
||||
QT_END_INCLUDE_NAMESPACE
|
||||
|
||||
#if QT_DEPRECATED_SINCE(5, 0)
|
||||
/*!
|
||||
\obsolete
|
||||
|
||||
@ -1279,6 +1280,7 @@ QList<QByteArray> QPicture::outputFormats()
|
||||
{
|
||||
return QPictureIO::outputFormats();
|
||||
}
|
||||
#endif // QT_DEPRECATED_SINCE(5, 0)
|
||||
|
||||
/*****************************************************************************
|
||||
QPictureIO member functions
|
||||
|
@ -90,11 +90,13 @@ public:
|
||||
friend Q_GUI_EXPORT QDataStream &operator<<(QDataStream &in, const QPicture &p);
|
||||
friend Q_GUI_EXPORT QDataStream &operator>>(QDataStream &in, QPicture &p);
|
||||
|
||||
static const char* pictureFormat(const QString &fileName);
|
||||
static QList<QByteArray> inputFormats();
|
||||
static QList<QByteArray> outputFormats();
|
||||
static QStringList inputFormatList();
|
||||
static QStringList outputFormatList();
|
||||
#if QT_DEPRECATED_SINCE(5, 0)
|
||||
static QT_DEPRECATED const char* pictureFormat(const QString &fileName);
|
||||
static QT_DEPRECATED QList<QByteArray> inputFormats();
|
||||
static QT_DEPRECATED QList<QByteArray> outputFormats();
|
||||
static QT_DEPRECATED QStringList inputFormatList();
|
||||
static QT_DEPRECATED QStringList outputFormatList();
|
||||
#endif // QT_DEPRECATED_SINCE(5, 0)
|
||||
|
||||
QPaintEngine *paintEngine() const Q_DECL_OVERRIDE;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user