Skip to content
Snippets Groups Projects
Commit d9255392 authored by Alexandre Lision's avatar Alexandre Lision
Browse files

model: fix previous commit

Missing definition of mimeTypes()

Refs #68848
parent 98e6673c
Branches
No related tags found
No related merge requests found
......@@ -63,12 +63,13 @@ public:
//Mutator
QModelIndex add();
Q_INVOKABLE void remove ( const QModelIndex& idx );
virtual QMimeData* mimeData ( const QModelIndexList &indexes) const override;
Q_INVOKABLE void remove ( const QModelIndex& idx );
virtual QMimeData* mimeData ( const QModelIndexList &indexes ) const override;
virtual bool dropMimeData( const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) override;
Q_INVOKABLE void clear ( );
Q_INVOKABLE void reload ( );
Q_INVOKABLE void save ( );
virtual QStringList mimeTypes ( ) const override;
Q_INVOKABLE void clear ( );
Q_INVOKABLE void reload ( );
Q_INVOKABLE void save ( );
int acceptedPayloadTypes() const;
QModelIndex getIndexofCodecByID(int id);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment