diff --git a/src/modules/partition/gui/ChoicePage.cpp b/src/modules/partition/gui/ChoicePage.cpp index 883abbd2d..89b0c4476 100644 --- a/src/modules/partition/gui/ChoicePage.cpp +++ b/src/modules/partition/gui/ChoicePage.cpp @@ -471,7 +471,7 @@ ChoicePage::applyActionChoice( ChoicePage::Choice choice ) setNextEnabled( !m_beforePartitionBarsView->selectionModel()->selectedRows().isEmpty() ); connect( m_beforePartitionBarsView->selectionModel(), SIGNAL( currentRowChanged( QModelIndex, QModelIndex ) ), - this, SLOT( doAlongsideSelectedPartition( QModelIndex, QModelIndex ) ), + this, SLOT( doAlongsideSetupSplitter( QModelIndex, QModelIndex ) ), Qt::UniqueConnection ); break; case NoChoice: @@ -483,8 +483,8 @@ ChoicePage::applyActionChoice( ChoicePage::Choice choice ) void -ChoicePage::doAlongsideSelectedPartition( const QModelIndex& current, - const QModelIndex& previous ) +ChoicePage::doAlongsideSetupSplitter( const QModelIndex& current, + const QModelIndex& previous ) { Q_UNUSED( previous ); if ( !current.isValid() ) diff --git a/src/modules/partition/gui/ChoicePage.h b/src/modules/partition/gui/ChoicePage.h index 74ebc92bf..b09d25dd6 100644 --- a/src/modules/partition/gui/ChoicePage.h +++ b/src/modules/partition/gui/ChoicePage.h @@ -72,7 +72,7 @@ signals: private slots: void doReplaceSelectedPartition( const QModelIndex& current, const QModelIndex& previous ); - void doAlongsideSelectedPartition( const QModelIndex& current, const QModelIndex& previous ); + void doAlongsideSetupSplitter( const QModelIndex& current, const QModelIndex& previous ); private: void setNextEnabled( bool enabled );