Skip to content

Commit

Permalink
Fix doxygen warnings, missing docs+sip
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Jun 4, 2016
1 parent dd8ce36 commit 17f4b4c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
6 changes: 6 additions & 0 deletions python/gui/symbology-ng/qgsrendererv2widget.sip
Expand Up @@ -39,6 +39,12 @@ class QgsRendererV2Widget : QWidget
*/
void applyChanges();

/** Shows a panel widget inside the renderer widget.
* @param container widget panel to show
* @note added in QGIS 2.16
*/
void showPanel( QWidget *container );

signals:
/**
* Emitted when expression context variables on the associated
Expand Down
4 changes: 3 additions & 1 deletion src/gui/layertree/qgslayertreeembeddedwidgetsimpl.cpp
Expand Up @@ -25,7 +25,7 @@
#include "qgsvectorlayer.h"



///@cond PRIVATE

QgsLayerTreeTransparencyWidget::QgsLayerTreeTransparencyWidget( QgsMapLayer* layer )
: mLayer( layer )
Expand Down Expand Up @@ -120,3 +120,5 @@ bool QgsLayerTreeTransparencyWidget::Provider::supportsLayer( QgsMapLayer* layer
{
return layer->type() == QgsMapLayer::VectorLayer || layer->type() == QgsMapLayer::RasterLayer;
}

///@endcond
4 changes: 4 additions & 0 deletions src/gui/symbology-ng/qgsrendererv2widget.h
Expand Up @@ -76,6 +76,10 @@ class GUI_EXPORT QgsRendererV2Widget : public QStackedWidget
*/
void applyChanges();

/** Shows a panel widget inside the renderer widget.
* @param container widget panel to show
* @note added in QGIS 2.16
*/
void showPanel( QWidget *container );

signals:
Expand Down

0 comments on commit 17f4b4c

Please sign in to comment.