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 "charset_conv.h"
/// @define PORTAUDIO_DEBUG Enable debugging?
//#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
/// @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 list;
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
/// @param std::map<int
/// @param TrackList
/// @param Type
/// @param TrackList
/// @param Type
/// @return
///
int FFmpegSourceProvider::AskForTrackSelection(const std::map<int,wxString> &TrackList, FFMS_TrackType Type) {

View File

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

View File

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