Remove Actions and Icons from Ubuntu build

This commit is contained in:
craig.p.drummond
2014-04-11 17:45:59 +00:00
committed by craig.p.drummond
parent 35ffb8d2ea
commit eb34a2bcd5
20 changed files with 144 additions and 23 deletions

View File

@@ -49,6 +49,7 @@ bool PlayQueueProxyModel::filterAcceptsRow(int sourceRow, const QModelIndex &sou
return index.isValid() && matchesFilter(*static_cast<Song *>(index.internalPointer()));
}
#ifndef ENABLE_UBUNTU
QMimeData *PlayQueueProxyModel::mimeData(const QModelIndexList &indexes) const
{
QModelIndexList sourceIndexes;
@@ -65,3 +66,4 @@ bool PlayQueueProxyModel::dropMimeData(const QMimeData *data, Qt::DropAction act
const QModelIndex sourceIndex = mapToSource(index(row, column, parent));
return sourceModel()->dropMimeData(data, action, sourceIndex.row(), sourceIndex.column(), sourceIndex.parent());
}
#endif