# HG changeset patch # User sheepluva # Date 1319212532 -7200 # Node ID 6f301dac12ff5147b1e792e2b69af941316a9c07 # Parent 728cabee2c9f0659c6e546e7350bdc4291df58ef fix an include; fix/add comments diff -r 728cabee2c9f -r 6f301dac12ff QTfrontend/ui/widget/HistoryLineEdit.cpp --- 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 -#include "SmartLineEdit.h" +#include "HistoryLineEdit.h" HistoryLineEdit::HistoryLineEdit(QWidget * parent, int maxHistorySize) : QLineEdit(parent) diff -r 728cabee2c9f -r 6f301dac12ff QTfrontend/ui/widget/HistoryLineEdit.h --- 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 diff -r 728cabee2c9f -r 6f301dac12ff QTfrontend/ui/widget/SmartLineEdit.cpp --- 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) diff -r 728cabee2c9f -r 6f301dac12ff QTfrontend/ui/widget/SmartLineEdit.h --- 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 diff -r 728cabee2c9f -r 6f301dac12ff QTfrontend/util/HWDataManager.cpp --- 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 #include diff -r 728cabee2c9f -r 6f301dac12ff QTfrontend/util/HWDataManager.h --- 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 diff -r 728cabee2c9f -r 6f301dac12ff QTfrontend/util/SDLInteraction.cpp --- 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" diff -r 728cabee2c9f -r 6f301dac12ff QTfrontend/util/SDLInteraction.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);