comparison dwtx/draw2d/graph/NestingTree.d @ 115:ae94c50641a0

Fix compile error
author Frank Benoit <benoit@tionex.de>
date Fri, 08 Aug 2008 11:26:13 +0200
parents 95307ad235d9
children
comparison
equal deleted inserted replaced
114:efda8ce1120b 115:ae94c50641a0
61 for (int j = 0; j < rank.count(); j++) { 61 for (int j = 0; j < rank.count(); j++) {
62 Node node = rank.getNode(j); 62 Node node = rank.getNode(j);
63 addToNestingTree(nestingMap, node); 63 addToNestingTree(nestingMap, node);
64 } 64 }
65 65
66 return cast(NestingTree)nestingMap.get(null); 66 return cast(NestingTree)nestingMap.get(cast(Object)null);
67 } 67 }
68 68
69 void calculateSortValues() { 69 void calculateSortValues() {
70 int total = 0; 70 int total = 0;
71 for (int i = 0; i < contents.size(); i++) { 71 for (int i = 0; i < contents.size(); i++) {