Skip to content

Commit

Permalink
Add missing QgsVScrollArea documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
manisandro committed Oct 23, 2017
1 parent ecd951d commit 2c36a51
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/gui/qgsvscrollarea.h
Expand Up @@ -21,10 +21,23 @@
#include "qgis_gui.h"
#include <QScrollArea>

/**
* \ingroup gui
* QgsVScrollArea is a QScrollArea subclass which only displays a vertical
* scrollbar and fits the width to the contents.
*
* \since QGIS 3.0
*/
class GUI_EXPORT QgsVScrollArea : public QScrollArea
{
public:

/**
* QgsVScrollArea
* \param parent The parent widget
*/
QgsVScrollArea( QWidget *parent = 0 );

bool eventFilter( QObject *o, QEvent *e ) override;
};

Expand Down

0 comments on commit 2c36a51

Please sign in to comment.