Changeset 846 for trunk/src/tools/uic/option.h
- 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/option.h
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) … … 44 44 45 45 #include <QtCore/QString> 46 #include <QtCore/QDir> 46 47 47 48 QT_BEGIN_NAMESPACE … … 62 63 unsigned int dependencies : 1; 63 64 unsigned int extractImages : 1; 65 unsigned int limitXPM_LineLength : 1; 64 66 unsigned int implicitIncludes: 1; 65 67 Generator generator; … … 86 88 dependencies(0), 87 89 extractImages(0), 90 limitXPM_LineLength(0), 88 91 implicitIncludes(1), 89 92 generator(CppGenerator), 90 93 prefix(QLatin1String("Ui_")) 91 94 { indent.fill(QLatin1Char(' '), 4); } 95 96 QString messagePrefix() const 97 { 98 return inputFile.isEmpty() ? 99 QString(QLatin1String("stdin")) : 100 QDir::toNativeSeparators(inputFile); 101 } 92 102 }; 93 103
Note:
See TracChangeset
for help on using the changeset viewer.