Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Strings are UTF8 encoded in drawText.
[graphlib.git] / DrawingWindow.cpp
index bb6a3e2..554e7fb 100644 (file)
@@ -1034,7 +1034,7 @@ void DrawingWindow::realDrawText(int x, int y, const char *text, int flags)
         r.setTop(y);
     }
     syncMutex.lock();
-    painter->drawText(r, flags, text, &r);
+    painter->drawText(r, flags, QString::fromUtf8(text), &r);
     dirty(r);
     syncCondition.wakeAll();
     syncMutex.unlock();