use previewDevices(), not the property itself, in OperationStack

use operationStack().previewDevices() where possible in the pm widget

svn path=/trunk/extragear/sysadmin/partitionmanager/; revision=1089122
This commit is contained in:
Volker Lanz 2010-02-12 13:30:28 +00:00
parent eca8342e75
commit 8ee33739c6
2 changed files with 5 additions and 5 deletions

View File

@ -420,8 +420,8 @@ void OperationStack::clearOperations()
/** Clears the list of Devices. */
void OperationStack::clearDevices()
{
qDeleteAll(m_PreviewDevices);
m_PreviewDevices.clear();
qDeleteAll(previewDevices());
previewDevices().clear();
}
/** Finds a Device a Partition is on.
@ -456,7 +456,7 @@ void OperationStack::addDevice(Device* d)
{
Q_ASSERT(d);
m_PreviewDevices.append(d);
previewDevices().append(d);
}
static bool deviceLessThan(const Device* d1, const Device* d2)
@ -466,5 +466,5 @@ static bool deviceLessThan(const Device* d1, const Device* d2)
void OperationStack::sortDevices()
{
qSort(m_PreviewDevices.begin(), m_PreviewDevices.end(), deviceLessThan);
qSort(previewDevices().begin(), previewDevices().end(), deviceLessThan);
}

View File

@ -398,7 +398,7 @@ void PartitionManagerWidget::clearSelectedPartition()
void PartitionManagerWidget::setSelectedDevice(const QString& device_node)
{
foreach(Device* d, previewDevices())
foreach(Device* d, operationStack().previewDevices())
if (d->deviceNode() == device_node)
{
setSelectedDevice(d);