summaryrefslogtreecommitdiffstats
path: root/graph.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Replaced Nokia copyrights in headerHEADdev4.8Teemu Kaukoranta2013-05-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Replaced old Nokia copyrights with Digia copyrights. Removed "All rights reserved" strings without leading copyrights were removed (for example, 'Copyright SomeCompany, all rights reserved remain untouched). Did NOT touch contact details, will change them later. Excluded folders that have '3rdparty' in path. Used command: find . -path '*/3rdparty/*' -prune -o -exec grep -ilI -E '.*Copyright.*Nokia.*' {} \; | tee >(xargs sed -i -r '1,10 s/([ \t#*]*)(.*Copyright.*Nokia.*)/ \1Copyright \(C\) 2013 Digia Plc and\/or its subsidiary\(-ies\)\./I') >(xargs sed -i -r '1,10 s/(^[ \t#*]*)(all rights reserved.*)/\1/I') This excludes binary files and retains whitespace and #* characters in the beginning of the edited lines. Change-Id: I9b960d54cfe46a85be86b524e95e3ee875933fb6 Reviewed-by: Sergio Ahumada <sergio.ahumada@digia.com> Reviewed-by: Janne Anttila <janne.anttila@digia.com>
* Write graph nodes using quotes on Graph::dump.Hugo Parente Lima2012-03-091-1/+1
|
* Pass QHash by reference for dumpDot method.Hugo Lima2010-03-191-1/+1
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Reviewer: Anderson Lizardo <anderson.lizardo@openbossa.org>
* Remove Boost::graph dependence from ApiExtractor by using our own codeHugo Lima2010-03-031-0/+130
for graph topological sort.