hello,
I upgrade my qt from 4.3 to 4.7. And I found many files in the directory "include/Qt/*" increase some code like this:
Qt Code:
  1. #ifndef QT_NO_QT_INCLUDE_WARN
  2. #if defined(__GNUC__)
  3. #warning "Inclusion of header files from include/Qt is deprecated."
  4. #elif defined(_MSC_VER)
  5. #pragma message("WARNING: Inclusion of header files from include/Qt is deprecated.")
  6. #endif
  7. #endif
To copy to clipboard, switch view to plain text mode 

That means, if I want to avoid the warning message , I must define the micro "QT_NO_QT_INCLUDE_WARN" ? But what is the meaning of warning message ?

thanks