Import: Use QStringLiteral

This commit is contained in:
Benjamin Bræstrup Sayoc
2025-02-09 18:18:59 +01:00
parent b0b62f3f26
commit 3d1e49a888

View File

@@ -102,7 +102,7 @@ void OCAFBrowser::load(QTreeWidget* theTree)
root->setIcon(0, myGroupIcon);
theTree->addTopLevelItem(root);
load(pDoc->GetData()->Root(), root, QString::fromLatin1("0"));
load(pDoc->GetData()->Root(), root, QStringLiteral("0"));
}
void OCAFBrowser::load(const TDF_Label& label, QTreeWidgetItem* item, const QString& str)
@@ -112,7 +112,7 @@ void OCAFBrowser::load(const TDF_Label& label, QTreeWidgetItem* item, const QStr
Handle(TDataStd_Name) name;
if (label.FindAttribute(TDataStd_Name::GetID(), name)) {
QString text =
QString::fromLatin1("%1 %2").arg(str, QString::fromUtf8(toString(name->Get()).c_str()));
QStringLiteral("%1 %2").arg(str, QString::fromUtf8(toString(name->Get()).c_str()));
item->setText(0, text);
}
@@ -167,7 +167,7 @@ void OCAFBrowser::load(const TDF_Label& label, QTreeWidgetItem* item, const QStr
else if (it.Value() == XCAFDoc_Color::GetID()) {
Quantity_ColorRGBA rgba = Handle(XCAFDoc_Color)::DownCast(attr)->GetColorRGBA();
Quantity_Color rgb = rgba.GetRGB();
QString tuple = QString::fromLatin1("(%1, %2, %3, %4)")
QString tuple = QStringLiteral("(%1, %2, %3, %4)")
.arg(rgb.Red())
.arg(rgb.Green())
.arg(rgb.Blue())
@@ -201,7 +201,7 @@ void OCAFBrowser::load(const TDF_Label& label, QTreeWidgetItem* item, const QStr
int index = 1;
for (TDF_ChildIterator it(label); it.More(); it.Next(), index++) {
QString text = QString::fromLatin1("%1:%2").arg(str).arg(index);
QString text = QStringLiteral("%1:%2").arg(str).arg(index);
QTreeWidgetItem* child = new QTreeWidgetItem();
child->setText(0, text);
child->setIcon(0, myGroupIcon);
@@ -284,7 +284,7 @@ QString OCAFBrowser::toText(const Handle(TDataStd_TreeNode) & treeNode)
TCollection_AsciiString entry;
TDF_Tool::Entry(aLabel, entry);
QString suffix = QString::fromLatin1(entry.ToCString());
display = QString::fromLatin1("%1 ==> %2").arg(prefix, suffix);
display = QStringLiteral("%1 ==> %2").arg(prefix, suffix);
}
else {
Handle(TDataStd_TreeNode) aFirstChild = treeNode->First();
@@ -297,7 +297,7 @@ QString OCAFBrowser::toText(const Handle(TDataStd_TreeNode) & treeNode)
aRefs.append(suffix);
aFirstChild = aFirstChild->Next();
}
display = QString::fromLatin1("%1 <== %2").arg(prefix, aRefs.join(QChar::fromLatin1(',')));
display = QStringLiteral("%1 <== %2").arg(prefix, aRefs.join(QChar::fromLatin1(',')));
}
QString text;
@@ -316,7 +316,7 @@ void OCAFBrowser::showDialog(const QString& title, const Handle(TDocStd_Document
QDialog* dlg = new QDialog(Gui::getMainWindow());
QTreeWidget* tree = new QTreeWidget();
tree->setHeaderLabel(QString::fromLatin1("OCAF Browser"));
tree->setHeaderLabel(QStringLiteral("OCAF Browser"));
QVBoxLayout* layout = new QVBoxLayout;
layout->addWidget(tree);