mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-07 02:35:33 +08:00
Ref T480 No need for QStringLiteral when concatenating with %, use UTF-16 string literals.
This commit is contained in:
@@ -101,7 +101,7 @@ namespace BlackGui
|
||||
if (!action) { continue; }
|
||||
QToolButton *tb = new QToolButton(ui->fr_NavigatorDialogInner);
|
||||
tb->setDefaultAction(action);
|
||||
tb->setObjectName(this->objectName() % QStringLiteral(":") % action->objectName());
|
||||
tb->setObjectName(this->objectName() % u':' % action->objectName());
|
||||
if (!action->text().isEmpty())
|
||||
{
|
||||
tb->setToolTip(action->text());
|
||||
|
||||
Reference in New Issue
Block a user