From 5f52329c5955930b46c4b4df10322c3d9ea2cbd9 Mon Sep 17 00:00:00 2001 From: johanneshilden Date: Fri, 13 Oct 2017 00:33:59 +0300 Subject: [PATCH] Add some docblock comments --- components/qtmaterialautocomplete.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) 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) {