linter: Apply clang-format 19.1 formatting

find ./Source/ -name '*.cpp' -o -name '*.h' | xargs clang-format-19 -i
This commit is contained in:
Joshua Vandaële 2025-03-17 12:14:32 +01:00
parent d9d0082018
commit 2c54ee94c1
No known key found for this signature in database
GPG key ID: 5E8F4E7EDBD390EA
41 changed files with 159 additions and 212 deletions

View file

@ -80,19 +80,19 @@ public:
[[noreturn]] void setSourceModel(QAbstractItemModel* source_model) override { Crash(); }
bool filterAcceptsRow(int source_row, const QModelIndex& source_parent) const override;
template <bool BranchWatchProxyModel::*member>
template <bool BranchWatchProxyModel::* member>
void OnToggled(bool enabled)
{
this->*member = enabled;
invalidateRowsFilter();
}
template <QString BranchWatchProxyModel::*member>
template <QString BranchWatchProxyModel::* member>
void OnSymbolTextChanged(const QString& text)
{
this->*member = text;
invalidateRowsFilter();
}
template <std::optional<u32> BranchWatchProxyModel::*member>
template <std::optional<u32> BranchWatchProxyModel::* member>
void OnAddressTextChanged(const QString& text)
{
bool ok = false;