Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
7d035edf
Commit
7d035edf
authored
Dec 20, 2017
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
player/Control, ...: remove API documentation references to the obsolete Error class
parent
36899dba
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
13 deletions
+13
-13
DecoderControl.hxx
src/decoder/DecoderControl.hxx
+1
-1
Control.hxx
src/player/Control.hxx
+3
-3
Playlist.hxx
src/queue/Playlist.hxx
+9
-9
No files found.
src/decoder/DecoderControl.hxx
View file @
7d035edf
...
...
@@ -283,7 +283,7 @@ struct DecoderControl {
}
/**
* Clear the error condition
and free the #Error object
(if any).
* Clear the error condition (if any).
*
* Caller must lock the object.
*/
...
...
src/player/Control.hxx
View file @
7d035edf
...
...
@@ -340,7 +340,7 @@ private:
public
:
/**
* Throws
std::runtime_error or #Error
on error.
* Throws on error.
*
* @param song the song to be queued
*/
...
...
@@ -467,7 +467,7 @@ private:
void
EnqueueSongLocked
(
std
::
unique_ptr
<
DetachedSong
>
song
)
noexcept
;
/**
* Throws
std::runtime_error or #Error
on error.
* Throws on error.
*/
void
SeekLocked
(
std
::
unique_ptr
<
DetachedSong
>
song
,
SongTime
t
);
...
...
@@ -481,7 +481,7 @@ public:
/**
* Makes the player thread seek the specified song to a position.
*
* Throws
std::runtime_error or #Error
on error.
* Throws on error.
*
* @param song the song to be queued; the given instance will be owned
* and freed by the player
...
...
src/queue/Playlist.hxx
View file @
7d035edf
...
...
@@ -276,46 +276,46 @@ public:
void
Stop
(
PlayerControl
&
pc
);
/**
* Throws
std::runtime_error or #Error
on error.
* Throws on error.
*/
void
PlayPosition
(
PlayerControl
&
pc
,
int
position
);
/**
* Throws
std::runtime_error or #Error
on error.
* Throws on error.
*/
void
PlayOrder
(
PlayerControl
&
pc
,
unsigned
order
);
/**
* Throws
std::runtime_error or #Error
on error.
* Throws on error.
*/
void
PlayId
(
PlayerControl
&
pc
,
int
id
);
/**
* Throws
std::runtime_error or #Error
on error.
* Throws on error.
*/
void
PlayNext
(
PlayerControl
&
pc
);
/**
* Throws
std::runtime_error or #Error
on error.
* Throws on error.
*/
void
PlayPrevious
(
PlayerControl
&
pc
);
/**
* Throws
std::runtime_error or #Error
on error.
* Throws on error.
*/
void
SeekSongOrder
(
PlayerControl
&
pc
,
unsigned
song_order
,
SongTime
seek_time
);
/**
* Throws
std::runtime_error or #Error
on error.
* Throws on error.
*/
void
SeekSongPosition
(
PlayerControl
&
pc
,
unsigned
sonag_position
,
SongTime
seek_time
);
/**
* Throws
std::runtime_error or #Error
on error.
* Throws on error.
*/
void
SeekSongId
(
PlayerControl
&
pc
,
unsigned
song_id
,
SongTime
seek_time
);
...
...
@@ -324,7 +324,7 @@ public:
* Seek within the current song. Fails if MPD is not currently
* playing.
*
* Throws
std::runtime_error or #Error
on error.
* Throws on error.
*
* @param seek_time the time
* @param relative if true, then the specified time is relative to the
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment