mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 12:48:57 +00:00
Branch Watch Tool: Add Rule Of 5 And Remove Unnecessary Include
This commit is contained in:
parent
ecce8e81c8
commit
4a2ec86a9a
3 changed files with 19 additions and 2 deletions
|
@ -57,6 +57,12 @@ public:
|
|||
: QSortFilterProxyModel(parent), m_branch_watch(branch_watch)
|
||||
{
|
||||
}
|
||||
~BranchWatchProxyModel() override = default;
|
||||
|
||||
BranchWatchProxyModel(const BranchWatchProxyModel&) = delete;
|
||||
BranchWatchProxyModel(BranchWatchProxyModel&&) = delete;
|
||||
BranchWatchProxyModel& operator=(const BranchWatchProxyModel&) = delete;
|
||||
BranchWatchProxyModel& operator=(BranchWatchProxyModel&&) = delete;
|
||||
|
||||
BranchWatchTableModel* sourceModel() const
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue