Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove unused slot
  • Loading branch information
m-kuhn committed Aug 15, 2012
1 parent 7b99a72 commit f22d23e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 16 deletions.
16 changes: 1 addition & 15 deletions src/app/qgsdiagramproperties.cpp
Expand Up @@ -338,20 +338,6 @@ void QgsDiagramProperties::on_mDiagramTypeComboBox_currentIndexChanged( const QS
}
}

void QgsDiagramProperties::on_mIncreaseSmallDiagramsCheckBox_stateChanged( int state )
{
if ( Qt::Checked == state )
{
mIncreaseMinimumSizeLabel->setEnabled( true );
mIncreaseMinimumSizeSpinBox->setEnabled( true );
}
else
{
mIncreaseMinimumSizeLabel->setEnabled( false );
mIncreaseMinimumSizeSpinBox->setEnabled( false );
}
}

void QgsDiagramProperties::on_mTransparencySlider_valueChanged( int value )
{
mTransparencyLabel->setText( tr( "Transparency: %1%" ).arg( value ) );
Expand Down Expand Up @@ -610,4 +596,4 @@ void QgsDiagramProperties::apply()
}
mLayer->setDiagramLayerSettings( dls );
}
}
}
1 change: 0 additions & 1 deletion src/app/qgsdiagramproperties.h
Expand Up @@ -35,7 +35,6 @@ class QgsDiagramProperties : public QWidget, private Ui::QgsDiagramPropertiesBas
public slots:
void apply();
void on_mDiagramTypeComboBox_currentIndexChanged( const QString& itemtext );
void on_mIncreaseSmallDiagramsCheckBox_stateChanged( int state );
void on_mTransparencySlider_valueChanged( int value );
void on_mAddCategoryPushButton_clicked();
void on_mBackgroundColorButton_clicked();
Expand Down

0 comments on commit f22d23e

Please sign in to comment.