change arg name so it doesn't clash with a method name

svn path=/trunk/extragear/sysadmin/partitionmanager/; revision=1115130
This commit is contained in:
Volker Lanz 2010-04-15 10:26:51 +00:00
parent cc1542fa84
commit 65500ac0f3
1 changed files with 2 additions and 2 deletions

View File

@ -33,8 +33,8 @@
@param freebefore number of sectors free before the Partition to resize
@param freeafter number of sectors free after the Partition to resize
*/
ResizeDialog::ResizeDialog(QWidget* parent, Device& device, Partition& p, qint64 minFirst, qint64 maxLast) :
SizeDialogBase(parent, device, p, minFirst, maxLast),
ResizeDialog::ResizeDialog(QWidget* parent, Device& d, Partition& p, qint64 minFirst, qint64 maxLast) :
SizeDialogBase(parent, d, p, minFirst, maxLast),
m_OriginalFirstSector(p.firstSector()),
m_OriginalLastSector(p.lastSector())
{