Skip to content

Commit

Permalink
Fix warnings about unused parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed Jun 2, 2016
1 parent 380076c commit 367c4a8
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion src/gui/editorwidgets/qgscolorwidgetwrapper.cpp
Expand Up @@ -78,7 +78,7 @@ void QgsColorWidgetWrapper::setValue( const QVariant& value )
mColorButton->setColor( !value.isNull() ? QColor( value.toString() ) : QColor() );
}

void QgsColorWidgetWrapper::updateConstraintWidgetStatus( bool constraintValid )
void QgsColorWidgetWrapper::updateConstraintWidgetStatus( bool /*constraintValid*/ )
{
// nothing
}
34 changes: 17 additions & 17 deletions src/gui/qgsmapstylepanel.cpp
@@ -1,17 +1,17 @@
#include "qgsmapstylepanel.h"

QgsMapStylePanel::QgsMapStylePanel(QgsMapLayer *layer, QgsMapCanvas *canvas, QWidget *parent)
: QWidget( parent )
{

}

QgsMapStylePanelFactory::QgsMapStylePanelFactory()
{

}

QgsMapStylePanelFactory::~QgsMapStylePanelFactory()
{

}
#include "qgsmapstylepanel.h"

QgsMapStylePanel::QgsMapStylePanel( QgsMapLayer * /*layer*/, QgsMapCanvas * /*canvas*/, QWidget *parent )
: QWidget( parent )
{

}

QgsMapStylePanelFactory::QgsMapStylePanelFactory()
{

}

QgsMapStylePanelFactory::~QgsMapStylePanelFactory()
{

}

0 comments on commit 367c4a8

Please sign in to comment.