Skip to content

Commit 2c36a51

Browse files
committedOct 23, 2017
Add missing QgsVScrollArea documentation
1 parent ecd951d commit 2c36a51

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
 

‎src/gui/qgsvscrollarea.h

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,23 @@
2121
#include "qgis_gui.h"
2222
#include <QScrollArea>
2323

24+
/**
25+
* \ingroup gui
26+
* QgsVScrollArea is a QScrollArea subclass which only displays a vertical
27+
* scrollbar and fits the width to the contents.
28+
*
29+
* \since QGIS 3.0
30+
*/
2431
class GUI_EXPORT QgsVScrollArea : public QScrollArea
2532
{
2633
public:
34+
35+
/**
36+
* QgsVScrollArea
37+
* \param parent The parent widget
38+
*/
2739
QgsVScrollArea( QWidget *parent = 0 );
40+
2841
bool eventFilter( QObject *o, QEvent *e ) override;
2942
};
3043

0 commit comments

Comments
 (0)
Please sign in to comment.