diff options
| author | Dentomologist <dentomologist@gmail.com> | 2023-11-04 14:01:39 -0700 |
|---|---|---|
| committer | Dentomologist <dentomologist@gmail.com> | 2023-11-04 14:14:14 -0700 |
| commit | 43e69d3e6ab699d2ae09dab377e11651e799f995 (patch) | |
| tree | 89b892c7b16ae734c8c69ff65c8eb2c206d1a919 /Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp | |
| parent | b7b8f468321dd102809b32cf55a69499c3225cf6 (diff) | |
DolphinQt: Remove unnecessary qOverloads
qOverload is used to disambiguate pointers to overloaded functions, but
most of the usages in the code base were with non-overloaded functions.
Diffstat (limited to 'Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp')
| -rw-r--r-- | Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp b/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp index cb66245cb4..6ddea56a71 100644 --- a/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp +++ b/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp @@ -246,7 +246,7 @@ CreateFigureDialog::CreateFigureDialog(QWidget* parent, u8 slot) : QDialog(paren setLayout(layout); - connect(combo_figlist, QOverload<int>::of(&QComboBox::currentIndexChanged), [=](int index) { + connect(combo_figlist, &QComboBox::currentIndexChanged, [=](int index) { const u32 char_info = combo_figlist->itemData(index).toUInt(); if (char_info != 0xFFFFFFFF) { |
