TechDraw: Use QStringLiteral

This commit is contained in:
Benjamin Bræstrup Sayoc
2025-02-09 17:51:41 +01:00
parent 2745f43602
commit 835905f76e
41 changed files with 250 additions and 250 deletions

View File

@@ -105,20 +105,20 @@ Gui::Action * CmdTechDrawStackGroup::createAction(void)
QAction* p1 = pcAction->addAction(QString());
p1->setIcon(Gui::BitmapFactory().iconFromTheme("actions/TechDraw_StackTop"));
p1->setObjectName(QString::fromLatin1("TechDraw_StackTop"));
p1->setWhatsThis(QString::fromLatin1("TechDraw_StackTop"));
p1->setObjectName(QStringLiteral("TechDraw_StackTop"));
p1->setWhatsThis(QStringLiteral("TechDraw_StackTop"));
QAction* p2 = pcAction->addAction(QString());
p2->setIcon(Gui::BitmapFactory().iconFromTheme("actions/TechDraw_StackBottom"));
p2->setObjectName(QString::fromLatin1("TechDraw_StackBottom"));
p2->setWhatsThis(QString::fromLatin1("TechDraw_StackBottom"));
p2->setObjectName(QStringLiteral("TechDraw_StackBottom"));
p2->setWhatsThis(QStringLiteral("TechDraw_StackBottom"));
QAction* p3 = pcAction->addAction(QString());
p3->setIcon(Gui::BitmapFactory().iconFromTheme("actions/TechDraw_StackUp"));
p3->setObjectName(QString::fromLatin1("TechDraw_StackUp"));
p3->setWhatsThis(QString::fromLatin1("TechDraw_StackUp"));
p3->setObjectName(QStringLiteral("TechDraw_StackUp"));
p3->setWhatsThis(QStringLiteral("TechDraw_StackUp"));
QAction* p4 = pcAction->addAction(QString());
p4->setIcon(Gui::BitmapFactory().iconFromTheme("actions/TechDraw_StackDown"));
p4->setObjectName(QString::fromLatin1("TechDraw_StackDown"));
p4->setWhatsThis(QString::fromLatin1("TechDraw_StackDown"));
p4->setObjectName(QStringLiteral("TechDraw_StackDown"));
p4->setWhatsThis(QStringLiteral("TechDraw_StackDown"));
_pcAction = pcAction;
languageChange();