mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-29 10:25:36 -04:00
[summaryq] Nothing uses the derived type of the model
(This assertion may be dialed back if the Config object is used in the summary ViewStep, which will want to get at the widget pointers, but that's for later)
This commit is contained in:
parent
a658e88575
commit
792ba8c0af
1 changed files with 2 additions and 2 deletions
|
@ -56,7 +56,7 @@ class Config : public QObject, public QQmlParserStatus
|
|||
///@brief Description of what the summary means
|
||||
Q_PROPERTY( QString message MEMBER m_message NOTIFY messageChanged )
|
||||
|
||||
Q_PROPERTY( SummaryModel* summaryModel READ summaryModel CONSTANT FINAL )
|
||||
Q_PROPERTY( QAbstractListModel* summaryModel READ summaryModel CONSTANT FINAL )
|
||||
|
||||
public:
|
||||
explicit Config( Calamares::ViewStep* parent = nullptr );
|
||||
|
@ -66,7 +66,7 @@ public:
|
|||
void refresh();
|
||||
void init();
|
||||
|
||||
SummaryModel* summaryModel() const { return m_summary; }
|
||||
QAbstractListModel* summaryModel() const { return m_summary; }
|
||||
|
||||
private:
|
||||
Calamares::ViewStepList stepsForSummary( const Calamares::ViewStepList& allSteps ) const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue