Skip to content

Commit

Permalink
DGraph: Change remaining toStdString() into qPrintable()
Browse files Browse the repository at this point in the history
  • Loading branch information
jcfr committed Nov 11, 2010
1 parent fda766e commit 5f0031d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Utilities/DGraph/DGraph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ int main(int argc, char** argv)
{
for(int i=out.size() - 1; i >= 0; --i)
{
std::cout << vertexIdToLabel[out[i]].toStdString();
std::cout << qPrintable(vertexIdToLabel[out[i]]);
if (i != 0)
{
std::cout << " ";
Expand Down

0 comments on commit 5f0031d

Please sign in to comment.