Part: Use QStringLiteral

This commit is contained in:
Benjamin Bræstrup Sayoc
2025-02-09 18:02:40 +01:00
parent 835905f76e
commit bada65edc3
23 changed files with 161 additions and 161 deletions

View File

@@ -135,10 +135,10 @@ PyMOD_INIT_FUNC(PartGui)
Base::Console().Log("Loading GUI of Part module... done\n");
Gui::BitmapFactory().addPath(QString::fromLatin1(":/icons/booleans"));
Gui::BitmapFactory().addPath(QString::fromLatin1(":/icons/create"));
Gui::BitmapFactory().addPath(QString::fromLatin1(":/icons/parametric"));
Gui::BitmapFactory().addPath(QString::fromLatin1(":/icons/tools"));
Gui::BitmapFactory().addPath(QStringLiteral(":/icons/booleans"));
Gui::BitmapFactory().addPath(QStringLiteral(":/icons/create"));
Gui::BitmapFactory().addPath(QStringLiteral(":/icons/parametric"));
Gui::BitmapFactory().addPath(QStringLiteral(":/icons/tools"));
// clang-format off
static struct PyModuleDef pAttachEngineTextsModuleDef = {