diff options
| author | Connor McLaughlin <stenzek@gmail.com> | 2019-08-08 12:25:30 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-08 12:25:30 +1000 |
| commit | 1bd8f033627ceef8479cb549447782ae860574c2 (patch) | |
| tree | bfa6fa96843079b448ca9230488a8031b742b714 /Source/Core/DolphinQt/Debugger/CodeWidget.cpp | |
| parent | 1092efa77ae302fc677ebb67cdf2f93024b93f79 (diff) | |
| parent | fef1b84f0a587dc285af6659cb64042e34e54223 (diff) | |
Merge pull request #8271 from lioncash/qstring
DolphinQt: Replace unnecessary QStringLiterals with alternatives where applicable
Diffstat (limited to 'Source/Core/DolphinQt/Debugger/CodeWidget.cpp')
| -rw-r--r-- | Source/Core/DolphinQt/Debugger/CodeWidget.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/DolphinQt/Debugger/CodeWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeWidget.cpp index def631f87e..d158af2793 100644 --- a/Source/Core/DolphinQt/Debugger/CodeWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/CodeWidget.cpp @@ -314,9 +314,9 @@ void CodeWidget::UpdateCallstack() void CodeWidget::UpdateSymbols() { - QString selection = m_symbols_list->selectedItems().isEmpty() ? - QStringLiteral("") : - m_symbols_list->selectedItems()[0]->text(); + const QString selection = m_symbols_list->selectedItems().isEmpty() ? + QString{} : + m_symbols_list->selectedItems()[0]->text(); m_symbols_list->clear(); for (const auto& symbol : g_symbolDB.Symbols()) |
