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