No, it means you should fix your source code to not use the deprecated include files and start using the documented include files. For example,
#include "Qt/qwidget.h"
// should be
#include <QWidget> // this is what typically appears in the documentation and examples
// or even
#include <QtGui/QWidget> // this appears from time to time in examples
#include <QtGui/qwidget.h> // and even this
#include "Qt/qwidget.h"
// should be
#include <QWidget> // this is what typically appears in the documentation and examples
// or even
#include <QtGui/QWidget> // this appears from time to time in examples
#include <QtGui/qwidget.h> // and even this
To copy to clipboard, switch view to plain text mode
In the meantime you can suppress the warning by defining QT_NO_QT_INCLUDE_WARN, but you will still have to fix your source before the deprecated includes disappear.
BTW: I only see those warnings in the Qt 4.8 source, not Qt 4.7
Bookmarks