diff options
| author | Zhangzhi Hu <[email protected]> | 2024-10-30 00:18:57 +0800 |
|---|---|---|
| committer | Méven Car <[email protected]> | 2024-10-31 10:04:40 +0000 |
| commit | 25f7aba43d0f4ca38167dd686ae0efd8c89cc5d4 (patch) | |
| tree | 4dd38ee1dc96039f14f19eba7d5eb876b5092336 /src/tests/dolphinmainwindowtest.cpp | |
| parent | af77a3f5a8240599c1c7e0d07a2a3a485ca1af02 (diff) | |
refactor: replace QString() with QStringLiteral() for better performance
Diffstat (limited to 'src/tests/dolphinmainwindowtest.cpp')
| -rw-r--r-- | src/tests/dolphinmainwindowtest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/dolphinmainwindowtest.cpp b/src/tests/dolphinmainwindowtest.cpp index 61a72ad51..8fd5be7cb 100644 --- a/src/tests/dolphinmainwindowtest.cpp +++ b/src/tests/dolphinmainwindowtest.cpp @@ -749,7 +749,7 @@ void DolphinMainWindowTest::testAccessibilityAncestorTree() } while (accessibleInterface != accessibleInterfaceOfMainWindow) { QVERIFY2(accessibleInterface, - qPrintable(QString("%1's accessibleInterface or one of its accessible children doesn't have the main window as an ancestor.") + qPrintable(QStringLiteral("%1's accessibleInterface or one of its accessible children doesn't have the main window as an ancestor.") .arg(currentlyFocusedObject->metaObject()->className()))); accessibleInterface = accessibleInterface->parent(); } |
