diff options
Diffstat (limited to 'aboutdialog.h')
-rwxr-xr-x | aboutdialog.h | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/aboutdialog.h b/aboutdialog.h index daa37d6..39ae2ba 100755 --- a/aboutdialog.h +++ b/aboutdialog.h @@ -22,7 +22,6 @@ #ifndef __ABOUTDIALOG_H__ #define __ABOUTDIALOG_H__ -#include <QHash> #include <QWidget> #include <QtGui> @@ -34,6 +33,10 @@ class QLabel; class QTabWidget; QT_END_NAMESPACE +/** + * @brief Class containing the main tab of about dialog + * + */ class InfoTab : public QWidget { Q_OBJECT @@ -41,7 +44,10 @@ class InfoTab : public QWidget public: InfoTab(QWidget *parent = 0); }; - +/** + * @brief Class containing the translator tab of about dialog + * + */ class TranslatorsTab : public QWidget { Q_OBJECT @@ -49,7 +55,10 @@ class InfoTab : public QWidget public: TranslatorsTab(QWidget *parent = 0); }; - + /** + * @brief Class for handling the about dialog + * + */ class AboutDialog : public QDialog { Q_OBJECT |