Changeset 846 for trunk/src/tools/uic/cpp/cppwriteincludes.cpp
- Timestamp:
- May 5, 2011, 5:36:53 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/vendor/nokia/qt/4.7.2 (added) merged: 845 /branches/vendor/nokia/qt/current merged: 844 /branches/vendor/nokia/qt/4.6.3 removed
- Property svn:mergeinfo changed
-
trunk/src/tools/uic/cpp/cppwriteincludes.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) … … 127 127 if (m_uic->hasExternalPixmap() && m_uic->pixmapFunction() == QLatin1String("qPixmapFromMimeSource")) { 128 128 #ifdef QT_NO_QT3_SUPPORT 129 qWarning("Warning: The form file has external pixmaps or qPixmapFromMimeSource() set as a pixmap function. " 130 "This requires Qt 3 support, which is disabled. The resulting code will not compile."); 129 qWarning("%s: Warning: The form file has external pixmaps or qPixmapFromMimeSource() set as a pixmap function. " 130 "This requires Qt 3 support, which is disabled. The resulting code will not compile.", 131 qPrintable(m_uic->option().messagePrefix())); 131 132 #endif 132 133 add(QLatin1String("Q3MimeSourceFactory")); … … 213 214 header += QLatin1String(".h"); 214 215 if (warnHeaderGeneration) { 215 qWarning("Warning: generated header '%s' for class '%s'.", qPrintable(header), 216 qPrintable(className)); 216 qWarning("%s: Warning: generated header '%s' for class '%s'.", 217 qPrintable(m_uic->option().messagePrefix()), 218 qPrintable(header), qPrintable(className)); 217 219 218 220 }
Note:
See TracChangeset
for help on using the changeset viewer.