summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinQt/Debugger/CodeWidget.cpp
diff options
context:
space:
mode:
authorConnor McLaughlin <stenzek@gmail.com>2019-08-08 12:25:30 +1000
committerGitHub <noreply@github.com>2019-08-08 12:25:30 +1000
commit1bd8f033627ceef8479cb549447782ae860574c2 (patch)
treebfa6fa96843079b448ca9230488a8031b742b714 /Source/Core/DolphinQt/Debugger/CodeWidget.cpp
parent1092efa77ae302fc677ebb67cdf2f93024b93f79 (diff)
parentfef1b84f0a587dc285af6659cb64042e34e54223 (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.cpp6
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())