Skip to content
Permalink
Browse files
#9254: prevent compiler warnings
  • Loading branch information
ahuarte47 committed Jan 2, 2014
1 parent 4f6c9cd commit a8c2d23
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
@@ -135,6 +135,8 @@ void QgsEllipseSymbolLayerV2Widget::on_mRotationSpinBox_valueChanged( double d )

void QgsEllipseSymbolLayerV2Widget::on_mOutlineStyleComboBox_currentIndexChanged( int index )
{
Q_UNUSED( index );

if ( mLayer )
{
mLayer->setOutlineStyle( mOutlineStyleComboBox->penStyle() );
@@ -374,6 +374,8 @@ void QgsSimpleMarkerSymbolLayerV2Widget::setOffset()

void QgsSimpleMarkerSymbolLayerV2Widget::on_mOutlineStyleComboBox_currentIndexChanged( int index )
{
Q_UNUSED( index );

if ( mLayer )
{
mLayer->setOutlineStyle( mOutlineStyleComboBox->penStyle() );

0 comments on commit a8c2d23

Please sign in to comment.