Changeset 846 for trunk/tools/qdoc3/qscodemarker.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/tools/qdoc3/qscodemarker.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) … … 280 280 281 281 if ( style == Summary ) { 282 FastSection enums(classe, "Enums", " enum", "enums");283 FastSection functions(classe, "Functions", " function", "functions");284 FastSection readOnlyProperties(classe, " Read-Only Properties", "property", "properties");285 FastSection signalz(classe, "Signals", " signal", "signals");286 FastSection writableProperties(classe, " Writable Properties", "property", "properties");282 FastSection enums(classe, "Enums", "", "enum", "enums"); 283 FastSection functions(classe, "Functions", "", "function", "functions"); 284 FastSection readOnlyProperties(classe, "", "Read-Only Properties", "property", "properties"); 285 FastSection signalz(classe, "Signals", "", "signal", "signals"); 286 FastSection writableProperties(classe, "", "Writable Properties", "property", "properties"); 287 287 288 288 QStack<const ClassNode *> stack; … … 329 329 append( sections, signalz ); 330 330 } else if ( style == Detailed ) { 331 FastSection enums( classe, "Enum Documentation" 332 FastSection functionsAndSignals( classe, "Function and Signal Documentation" 333 FastSection properties( classe, "Property Documentation" 331 FastSection enums( classe, "Enum Documentation", "", "member", "members"); 332 FastSection functionsAndSignals( classe, "Function and Signal Documentation", "", "member", "members"); 333 FastSection properties( classe, "Property Documentation", "", "member", "members"); 334 334 335 335 NodeList::ConstIterator c = classe->childNodes().begin(); … … 350 350 append( sections, functionsAndSignals ); 351 351 } else { // ( style == SeparateList ) 352 FastSection all( classe);352 FastSection all(classe, "", "", "member", "members"); 353 353 354 354 QStack<const ClassNode *> stack; … … 376 376 } 377 377 378 const Node *QsCodeMarker::resolveTarget( const QString& /* target */,379 const Tree * /* tree */,380 const Node * /* relative */ )381 {382 return 0;383 }384 385 378 QT_END_NAMESPACE
Note:
See TracChangeset
for help on using the changeset viewer.