doxygen comments
[aspt.git] / abouttab.cc
index 7e7d500a6d9e1bd20ed5210d63d250facfae25f1..d4be83e4776c811bba4948abd6ccb68e4ef60a21 100644 (file)
@@ -6,15 +6,26 @@ http://creativecommons.org/licenses/by-nc-nd/2.5/legalcode
 
 #include "abouttab.h"
 
+/**
+ * \brief About Tab constructor.
+ */
 AboutTab::AboutTab(QWidget *parent) : QWidget(parent) {
        init();
 }
 
+/**
+ * \brief About Tab destructor.
+ */
 AboutTab::~AboutTab() {
        delete label;
        delete mainLayout;
 }
 
+/**
+ * \brief About Tab initializer.
+ *
+ * Set some text into about tab.
+ */
 void AboutTab::init() {
        mainLayout = new QVBoxLayout;
        QString text;