fix an include; fix/add comments
authorsheepluva
Fri, 21 Oct 2011 17:55:32 +0200
changeset 6168 6f301dac12ff
parent 6167 728cabee2c9f
child 6169 582f9f61b972
fix an include; fix/add comments
QTfrontend/ui/widget/HistoryLineEdit.cpp
QTfrontend/ui/widget/HistoryLineEdit.h
QTfrontend/ui/widget/SmartLineEdit.cpp
QTfrontend/ui/widget/SmartLineEdit.h
QTfrontend/util/HWDataManager.cpp
QTfrontend/util/HWDataManager.h
QTfrontend/util/SDLInteraction.cpp
QTfrontend/util/SDLInteraction.h
--- a/QTfrontend/ui/widget/HistoryLineEdit.cpp	Fri Oct 21 08:41:21 2011 +0200
+++ b/QTfrontend/ui/widget/HistoryLineEdit.cpp	Fri Oct 21 17:55:32 2011 +0200
@@ -17,9 +17,14 @@
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  */
 
+/**
+ * @file  HistoryLineEdit.cpp
+ * @brief HistoryLineEdit class implementation
+ */
+
 #include <QStringList>
 
-#include "SmartLineEdit.h"
+#include "HistoryLineEdit.h"
 
 HistoryLineEdit::HistoryLineEdit(QWidget * parent, int maxHistorySize)
 : QLineEdit(parent)
--- a/QTfrontend/ui/widget/HistoryLineEdit.h	Fri Oct 21 08:41:21 2011 +0200
+++ b/QTfrontend/ui/widget/HistoryLineEdit.h	Fri Oct 21 17:55:32 2011 +0200
@@ -17,6 +17,11 @@
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  */
 
+/**
+ * @file  HistoryLineEdit.h
+ * @brief HistoryLineEdit class definition
+ */
+
 #ifndef HEDGEWARS_HISTORYLINEEDIT
 #define HEDGEWARS_HISTORYLINEEDIT
 
--- a/QTfrontend/ui/widget/SmartLineEdit.cpp	Fri Oct 21 08:41:21 2011 +0200
+++ b/QTfrontend/ui/widget/SmartLineEdit.cpp	Fri Oct 21 17:55:32 2011 +0200
@@ -17,6 +17,11 @@
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  */
 
+/**
+ * @file  SmartLineEdit.cpp
+ * @brief SmartLineEdit class implementation
+ */
+
 #include "SmartLineEdit.h"
 
 SmartLineEdit::SmartLineEdit(QWidget * parent, int maxHistorySize)
--- a/QTfrontend/ui/widget/SmartLineEdit.h	Fri Oct 21 08:41:21 2011 +0200
+++ b/QTfrontend/ui/widget/SmartLineEdit.h	Fri Oct 21 17:55:32 2011 +0200
@@ -17,6 +17,11 @@
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  */
 
+/**
+ * @file  SmartLineEdit.h
+ * @brief SmartLineEdit class definition
+ */
+
 #ifndef HEDGEWARS_SMARTLINEEDIT_H
 #define HEDGEWARS_SMARTLINEEDIT_H
 
--- a/QTfrontend/util/HWDataManager.cpp	Fri Oct 21 08:41:21 2011 +0200
+++ b/QTfrontend/util/HWDataManager.cpp	Fri Oct 21 17:55:32 2011 +0200
@@ -17,6 +17,11 @@
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  */
 
+/**
+ * @file  HWDataManager.cpp
+ * @brief HWDataManager class implementation
+ */
+
 #include <QMap>
 #include <QStringList>
 
--- a/QTfrontend/util/HWDataManager.h	Fri Oct 21 08:41:21 2011 +0200
+++ b/QTfrontend/util/HWDataManager.h	Fri Oct 21 17:55:32 2011 +0200
@@ -17,6 +17,11 @@
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  */
 
+/**
+ * @file  HWDataManager.h
+ * @brief HWDataManager class definition
+ */
+
 #ifndef HEDGEWARS_HWDATAMANAGER_H
 #define HEDGEWARS_HWDATAMANAGER_H
 
--- a/QTfrontend/util/SDLInteraction.cpp	Fri Oct 21 08:41:21 2011 +0200
+++ b/QTfrontend/util/SDLInteraction.cpp	Fri Oct 21 17:55:32 2011 +0200
@@ -16,6 +16,10 @@
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  */
 
+/**
+ * @file  SDLInteraction.cpp
+ * @brief SDLInteraction class implementation
+ */
 
 #include "SDL.h"
 #include "SDL_mixer.h"
--- a/QTfrontend/util/SDLInteraction.h	Fri Oct 21 08:41:21 2011 +0200
+++ b/QTfrontend/util/SDLInteraction.h	Fri Oct 21 17:55:32 2011 +0200
@@ -16,6 +16,11 @@
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  */
 
+/**
+ * @file  SDLInteraction.h
+ * @brief SDLInteraction class definition
+ */
+
 #ifndef HEDGEWARS_SDLINTERACTION_H
 #define HEDGEWARS_SDLINTERACTION_H
 
@@ -87,7 +92,7 @@
     /**
      * @brief Sets the music track to be played (or not).
      *
-     * @param soundFile path of the music file.
+     * @param musicFile path of the music file.
      */
     void setMusicTrack(const QString & musicFile);