LibGUI: Make GTableModel a retainable object.

It became clear that this class needs to support multiple owners.
This commit is contained in:
Andreas Kling 2019-03-20 03:27:07 +01:00
parent 41c744b3c8
commit f47945759b
Notes: sideshowbarker 2024-07-19 14:59:49 +09:00
22 changed files with 44 additions and 34 deletions

View file

@ -3,7 +3,7 @@
#include <stdlib.h>
#include <stdio.h>
GSortingProxyTableModel::GSortingProxyTableModel(OwnPtr<GTableModel>&& target)
GSortingProxyTableModel::GSortingProxyTableModel(Retained<GTableModel>&& target)
: m_target(move(target))
, m_key_column(-1)
{