Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[style dock] Fix warnings
  • Loading branch information
NathanW2 committed Jun 13, 2016
1 parent 841e6c6 commit 8cfd17d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/qgspanelwidget.cpp
Expand Up @@ -37,9 +37,9 @@ void QgsPanelWidget::connectChildPanel( QgsPanelWidget *panel )
connect( panel, SIGNAL( widgetChanged() ), this, SIGNAL( widgetChanged() ) );
}

void QgsPanelWidget::setDockMode(bool dockMode)
void QgsPanelWidget::setDockMode( bool dockMode )
{
mDockMode = true;
mDockMode = dockMode;
}

void QgsPanelWidget::acceptPanel()
Expand Down
2 changes: 2 additions & 0 deletions src/gui/symbology-ng/qgssymbolv2selectordialog.cpp
Expand Up @@ -838,7 +838,9 @@ void QgsSymbolV2SelectorDialog::lockLayer()

void QgsSymbolV2SelectorDialog::saveSymbol()
{
Q_NOWARN_DEPRECATED_PUSH
mSelectorWidget->saveSymbol();
Q_NOWARN_DEPRECATED_POP
}

void QgsSymbolV2SelectorDialog::duplicateLayer()
Expand Down

0 comments on commit 8cfd17d

Please sign in to comment.