comparison grapher.cpp @ 143:f61f032b06f9

* Fix another use of stderr as identifier
author Chris Cannam
date Wed, 01 Dec 2010 11:54:01 +0000
parents e6c6b88d19b9
children 644bd31e8301
comparison
equal deleted inserted replaced
142:46bf2a4a1fc8 143:f61f032b06f9
336 336
337 if (id == "") { 337 if (id == "") {
338 throw LayoutException("Changeset has no ID"); 338 throw LayoutException("Changeset has no ID");
339 } 339 }
340 if (m_changesets.contains(id)) { 340 if (m_changesets.contains(id)) {
341 DEBUG << "Duplicate changeset ID " << id << " in Grapher::layout()" << endl;
341 throw LayoutException(QString("Duplicate changeset ID %1").arg(id)); 342 throw LayoutException(QString("Duplicate changeset ID %1").arg(id));
342 } 343 }
343 344
344 m_changesets[id] = cs; 345 m_changesets[id] = cs;
345 346