diff --git a/components/qtmaterialautocomplete.cpp b/components/qtmaterialautocomplete.cpp index 8853c10..32efd8d 100644 --- a/components/qtmaterialautocomplete.cpp +++ b/components/qtmaterialautocomplete.cpp @@ -5,15 +5,29 @@ #include #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) {