1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-11-30 08:24:11 +01:00

OP-834 restored "dead" code that was commented out by mistake

This commit is contained in:
Philippe Renon 2013-02-09 18:06:24 +01:00 committed by Alessio Morale
parent 6d75dd0c6f
commit 538723696a
2 changed files with 4 additions and 10 deletions

View File

@ -174,16 +174,13 @@ Qt::DropActions NotifyTableModel::supportedDropActions() const
return Qt::MoveAction;
}
/*
QStringList NotifyTableModel::mimeTypes() const
{
QStringList types;
types << mime_type_notify_table;
return types;
}
*/
/*
bool NotifyTableModel::dropMimeData( const QMimeData * data, Qt::DropAction action, int row,
int column, const QModelIndex& parent)
{
@ -242,9 +239,7 @@ bool NotifyTableModel::dropMimeData( const QMimeData * data, Qt::DropAction acti
emit dataChanged(idxTopLeft, idxBotRight);
return true;
}
*/
/*
QMimeData* NotifyTableModel::mimeData(const QModelIndexList& indexes) const
{
QMimeData* mimeData = new QMimeData();
@ -262,7 +257,6 @@ QMimeData* NotifyTableModel::mimeData(const QModelIndexList& indexes) const
mimeData->setData(mime_type_notify_table, encodedData);
return mimeData;
}
*/
void NotifyTableModel::dropRows(int position, int count) const
{

View File

@ -61,11 +61,11 @@ public:
return QAbstractItemModel::flags(index) | Qt::ItemIsEditable | Qt::ItemIsDragEnabled | Qt::ItemIsDropEnabled;
}
//QStringList mimeTypes() const;
QStringList mimeTypes() const;
Qt::DropActions supportedDropActions() const;
//bool dropMimeData( const QMimeData * data, Qt::DropAction action, int row,
// int column, const QModelIndex& parent);
//QMimeData* mimeData(const QModelIndexList &indexes) const;
bool dropMimeData( const QMimeData * data, Qt::DropAction action, int row,
int column, const QModelIndex& parent);
QMimeData* mimeData(const QModelIndexList &indexes) const;
bool setData(const QModelIndex &index, const QVariant &value, int role);