Changeset 769 for trunk/src/tools/uic3/converter.cpp
- Timestamp:
- Aug 2, 2010, 9:27:30 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/vendor/nokia/qt/4.6.3 (added) merged: 768 /branches/vendor/nokia/qt/current merged: 767 /branches/vendor/nokia/qt/4.6.2 removed
- Property svn:mergeinfo changed
-
trunk/src/tools/uic3/converter.cpp
r651 r769 402 402 if (objName == receiver) { 403 403 // see if it's a custom slot 404 foreach ( QStringcs, ui_custom_slots) {404 foreach (const QString &cs, ui_custom_slots) { 405 405 if (cs == slot) { 406 406 resolved = true; … … 1123 1123 QStringList flags = prop->elementSet().split(QLatin1Char('|')); 1124 1124 QStringList v; 1125 foreach ( QStringfl, flags) {1125 foreach (const QString &fl, flags) { 1126 1126 QString e = WidgetInfo::resolveEnumerator(className, fl); 1127 1127 if (e.isEmpty()) { … … 1284 1284 //split type name on <>*& and whitespace 1285 1285 QStringList typeNames = t.split(QRegExp(QLatin1String("<|>|\\*|&| ")), QString::SkipEmptyParts); 1286 foreach( QStringtypeName , typeNames) {1286 foreach(const QString &typeName , typeNames) { 1287 1287 QString newName = fixClassName(typeName); 1288 1288 if( newName != typeName ) {
Note:
See TracChangeset
for help on using the changeset viewer.