Add some docblock comments
This commit is contained in:
parent
bcef4c2b40
commit
5f52329c59
|
@ -5,15 +5,29 @@
|
|||
#include <QEvent>
|
||||
#include "qtmaterialflatbutton.h"
|
||||
|
||||
/*!
|
||||
* \class QtMaterialAutoCompletePrivate
|
||||
* \internal
|
||||
*/
|
||||
|
||||
/*!
|
||||
* \internal
|
||||
*/
|
||||
QtMaterialAutoCompletePrivate::QtMaterialAutoCompletePrivate(QtMaterialAutoComplete *q)
|
||||
: QtMaterialTextFieldPrivate(q)
|
||||
{
|
||||
}
|
||||
|
||||
/*!
|
||||
* \internal
|
||||
*/
|
||||
QtMaterialAutoCompletePrivate::~QtMaterialAutoCompletePrivate()
|
||||
{
|
||||
}
|
||||
|
||||
/*!
|
||||
* \internal
|
||||
*/
|
||||
void QtMaterialAutoCompletePrivate::init()
|
||||
{
|
||||
Q_Q(QtMaterialAutoComplete);
|
||||
|
@ -103,6 +117,10 @@ void QtMaterialAutoCompletePrivate::init()
|
|||
}
|
||||
}
|
||||
|
||||
/*!
|
||||
* \class QtMaterialAutoComplete
|
||||
*/
|
||||
|
||||
QtMaterialAutoComplete::QtMaterialAutoComplete(QWidget *parent)
|
||||
: QtMaterialTextField(*new QtMaterialAutoCompletePrivate(this), parent)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue