Conflict solved: mainwindow.cpp and calculate.cpp
[speedfreak] / Client / creditsdialog.cpp
index eaba0f1..8e8d208 100644 (file)
@@ -1,17 +1,20 @@
 /*
  * Credits Dialog
  *
- * @author      Rikhard Kuutti <rikhard.kuutti@fudeco.com>
- * @copyright   (c) 2010 Speed Freak team
- * @license     http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @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)
@@ -20,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);