From 8eeb93d51acaaf4bc4ae6672ee9e898246b5f65c Mon Sep 17 00:00:00 2001
From: mitaclaw <140017135+mitaclaw@users.noreply.github.com>
Date: Tue, 27 Feb 2024 12:03:38 -0800
Subject: [PATCH] CodeWidget: Simplify Case-Insensitive Contains

---
 Source/Core/DolphinQt/Debugger/CodeWidget.cpp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Source/Core/DolphinQt/Debugger/CodeWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeWidget.cpp
index 0bf2937dbf..092c539bfb 100644
--- a/Source/Core/DolphinQt/Debugger/CodeWidget.cpp
+++ b/Source/Core/DolphinQt/Debugger/CodeWidget.cpp
@@ -359,7 +359,7 @@ void CodeWidget::UpdateCallstack()
   {
     const QString name = QString::fromStdString(frame.Name.substr(0, frame.Name.length() - 1));
 
-    if (name.toUpper().indexOf(filter.toUpper()) == -1)
+    if (!name.contains(filter, Qt::CaseInsensitive))
       continue;
 
     auto* item = new QListWidgetItem(name);
@@ -389,7 +389,7 @@ void CodeWidget::UpdateSymbols()
 
     item->setData(Qt::UserRole, symbol.second.address);
 
-    if (name.toUpper().indexOf(m_symbol_filter.toUpper()) != -1)
+    if (name.contains(m_symbol_filter, Qt::CaseInsensitive))
       m_symbols_list->addItem(item);
   }
 
@@ -411,7 +411,7 @@ void CodeWidget::UpdateFunctionCalls(const Common::Symbol* symbol)
       const QString name =
           QString::fromStdString(fmt::format("> {} ({:08x})", call_symbol->name, addr));
 
-      if (name.toUpper().indexOf(filter.toUpper()) == -1)
+      if (!name.contains(filter, Qt::CaseInsensitive))
         continue;
 
       auto* item = new QListWidgetItem(name);
@@ -436,7 +436,7 @@ void CodeWidget::UpdateFunctionCallers(const Common::Symbol* symbol)
       const QString name =
           QString::fromStdString(fmt::format("< {} ({:08x})", caller_symbol->name, addr));
 
-      if (name.toUpper().indexOf(filter.toUpper()) == -1)
+      if (!name.contains(filter, Qt::CaseInsensitive))
         continue;
 
       auto* item = new QListWidgetItem(name);