Introduce the qt_deprecates pragma
The qt_deprecates pragma indicates that the file passed as argument is deprecated and supposed to be replaced by the file where the pragma is defined. Syncqt procedure generates the file passed as argument automatically with the deprecation warning. After the deprecation period the pragma should be removed and the deprecated file will not be included to the Qt installation too. The pragma is only handled by the cpp version of syncqt cpp and supposed to replace the 'deprecatedheaders' record in sync.profiles. Change-Id: Ibe69423a5de67f58907a3edbc5961f5ab63944de Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
This commit is contained in:
parent
a6050125a7
commit
05cc5b3541
@ -4,6 +4,10 @@
|
||||
#ifndef QTDBUSGLOBAL_H
|
||||
#define QTDBUSGLOBAL_H
|
||||
|
||||
#if 0
|
||||
#pragma qt_deprecates(qdbusmacros.h)
|
||||
#endif
|
||||
|
||||
#include <QtCore/qglobal.h>
|
||||
#include <QtCore/qmetatype.h>
|
||||
#include <QtCore/qvariant.h>
|
||||
|
@ -6,6 +6,7 @@
|
||||
|
||||
#if 0
|
||||
#pragma qt_class(QSql)
|
||||
#pragma qt_deprecates(qsql.h)
|
||||
#endif
|
||||
|
||||
#include <QtCore/qglobal.h>
|
||||
|
@ -4,6 +4,10 @@
|
||||
#ifndef QTTESTGLOBAL_H
|
||||
#define QTTESTGLOBAL_H
|
||||
|
||||
#if 0
|
||||
#pragma qt_deprecates(qtest_global.h)
|
||||
#endif
|
||||
|
||||
#include <QtCore/qglobal.h>
|
||||
#include <QtTest/qttestlib-config.h>
|
||||
#include <QtTest/qttestexports.h>
|
||||
|
Loading…
Reference in New Issue
Block a user