Fix a bunch of Doxygen warnings, two more left!

Originally committed to SVN as r3347.
This commit is contained in:
Amar Takhar 2009-08-01 03:26:09 +00:00
parent 45f7b8b8a2
commit 718b1ca94a
4 changed files with 6 additions and 8 deletions

View file

@ -48,7 +48,6 @@
#include "utils.h" #include "utils.h"
#include "charset_conv.h" #include "charset_conv.h"
/// @define PORTAUDIO_DEBUG Enable debugging?
//#define PORTAUDIO_DEBUG //#define PORTAUDIO_DEBUG
@ -277,9 +276,9 @@ int64_t PortAudioPlayer::GetCurrentPosition()
/// @brief @param Setting from config file. /// @brief Get list of available output devices
/// @param favorite Favorite output device /// @param favorite Favorite output device
/// @return List of available output devices. /// @return List of available output devices with the 'favorite' being first in the list.
wxArrayString PortAudioPlayer::GetOutputDevices(wxString favorite) { wxArrayString PortAudioPlayer::GetOutputDevices(wxString favorite) {
wxArrayString list; wxArrayString list;
int devices = Pa_GetDeviceCount(); int devices = Pa_GetDeviceCount();

View file

@ -143,9 +143,8 @@ std::map<int,wxString> FFmpegSourceProvider::GetTracksOfType(FFIndexer *Indexer,
/// @brief Ask user for which track he wants to load /// @brief Ask user for which track he wants to load
/// @param std::map<int /// @param TrackList
/// @param TrackList /// @param Type
/// @param Type
/// @return /// @return
/// ///
int FFmpegSourceProvider::AskForTrackSelection(const std::map<int,wxString> &TrackList, FFMS_TrackType Type) { int FFmpegSourceProvider::AskForTrackSelection(const std::map<int,wxString> &TrackList, FFMS_TrackType Type) {

View file

@ -88,7 +88,7 @@ class CSRISubtitlesProviderFactory : public SubtitlesProviderFactory {
public: public:
/// @brief DOCME /// @brief DOCME
/// @param subType=_T(Ó) /// @param subType
/// ///
SubtitlesProvider *CreateProvider(wxString subType=_T("")) { return new CSRISubtitlesProvider(subType); } SubtitlesProvider *CreateProvider(wxString subType=_T("")) { return new CSRISubtitlesProvider(subType); }
wxArrayString GetSubTypes(); wxArrayString GetSubTypes();

View file

@ -85,7 +85,7 @@ class LibassSubtitlesProviderFactory : public SubtitlesProviderFactory {
public: public:
/// @brief DOCME /// @brief DOCME
/// @param subType=_T(Ó) /// @param subType
/// ///
SubtitlesProvider *CreateProvider(wxString subType=_T("")) { return new LibassSubtitlesProvider(); } SubtitlesProvider *CreateProvider(wxString subType=_T("")) { return new LibassSubtitlesProvider(); }
}; };