mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-01-18 03:52:11 +01:00
OP-834 added FIXME comment for bad Q_ASSERT around effective code and
commented out a bunch of dead code (that dead code includes the suspicious Q_ASSERT uses)
This commit is contained in:
parent
43786badfa
commit
6d75dd0c6f
@ -174,13 +174,16 @@ 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)
|
||||
{
|
||||
@ -225,8 +228,10 @@ bool NotifyTableModel::dropMimeData( const QMimeData * data, Qt::DropAction acti
|
||||
// addiional check in case dropping of multiple rows
|
||||
if(rows + direction > _list.size()) continue;
|
||||
|
||||
// FIXME: suspicious Q_ASSERT around effective code
|
||||
Q_ASSERT(insertRows(rows + direction, 1, QModelIndex()));
|
||||
_list.replace(rows + direction, item);
|
||||
// FIXME: suspicious Q_ASSERT around effective code
|
||||
Q_ASSERT(removeRows(dragged, 1, QModelIndex()));
|
||||
if (direction == UP_DIRECTION)
|
||||
++rows;
|
||||
@ -237,7 +242,9 @@ 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();
|
||||
@ -255,6 +262,7 @@ QMimeData* NotifyTableModel::mimeData(const QModelIndexList& indexes) const
|
||||
mimeData->setData(mime_type_notify_table, encodedData);
|
||||
return mimeData;
|
||||
}
|
||||
*/
|
||||
|
||||
void NotifyTableModel::dropRows(int position, int count) const
|
||||
{
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user