clean ups

This commit is contained in:
Aurélien Gâteau 2014-08-08 11:47:21 +02:00
parent 315c0f0fc5
commit 8e2b4050e7
5 changed files with 6 additions and 10 deletions

View file

@ -31,7 +31,7 @@
PartitionViewStep::PartitionViewStep( QObject* parent )
: Calamares::ViewStep( parent )
, m_core( new PartitionCoreModule( this ) )
, m_widget( new PartitionPage( m_core ) )
, m_page( new PartitionPage( m_core ) )
{
connect( m_core, SIGNAL( hasRootMountPointChanged( bool ) ),
SIGNAL( nextStatusChanged( bool ) ) );
@ -48,7 +48,7 @@ PartitionViewStep::prettyName() const
QWidget*
PartitionViewStep::widget()
{
return m_widget;
return m_page;
}