<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div></div><div><br></div><div>it's not fix, but just some outputs for more clear issue description.</div><div><br></div><div>This patch also contains a fix for dangerous QHash::[] operator.</div><div>something = hash[key]; // it will create a key;value pair if it's not in the hash.</div><div>so secure way is:</div><div>if (hash.contains(key))</div><div> something = hash.value(key);</div><div>else</div><div> assert(0); // or warning or whatever...</div><div><br></div><div>cheers,</div><div>Petr</div><div><br></div></body></html>