소스 검색

DGraph: Change remaining toStdString() into qPrintable()

Jean-Christophe Fillion-Robin 14 년 전
부모
커밋
5f0031dd5d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Utilities/DGraph/DGraph.cpp

+ 1 - 1
Utilities/DGraph/DGraph.cpp

@@ -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 << " ";