Conflict solved: mainwindow.cpp and calculate.cpp
[speedfreak] / Client / creditsdialog.cpp
index 83a4036..8e8d208 100644 (file)
@@ -1,9 +1,20 @@
+/*
+ * Credits Dialog
+ *
+ * @author     Rikhard Kuutti   <rikhard.kuutti@fudeco.com>
+ * @author     Toni Jussila     <toni.jussila@fudeco.com>
+ * @copyright  (c) 2010 Speed Freak team
+ * @license    http://opensource.org/licenses/gpl-license.php GNU Public License
+ */
+
 #include "creditsdialog.h"
 #include "ui_creditsdialog.h"
-
 #include <QDesktopServices>
 #include <QUrl>
 
+/**
+  * Constructor of this class.
+  */
 CreditsDialog::CreditsDialog(QWidget *parent) :
     QDialog(parent),
     ui(new Ui::CreditsDialog)
@@ -12,11 +23,17 @@ CreditsDialog::CreditsDialog(QWidget *parent) :
     this->setWindowTitle("Credits");
 }
 
+/**
+  * Destructor of this class. Should be used to release all allocated resources.
+  */
 CreditsDialog::~CreditsDialog()
 {
     delete ui;
 }
 
+/**
+  *
+  */
 void CreditsDialog::changeEvent(QEvent *e)
 {
     QDialog::changeEvent(e);