part of #2165 (just making sure everything compiles, first)
This commit is contained in:
parent
7bdbfa5968
commit
5efbf6a26f
|
@ -205,7 +205,7 @@ CuePlayer :: onStopButtonClicked(void) throw ()
|
||||||
* Event handler for the "cue audio player has stopped" event.
|
* Event handler for the "cue audio player has stopped" event.
|
||||||
*----------------------------------------------------------------------------*/
|
*----------------------------------------------------------------------------*/
|
||||||
void
|
void
|
||||||
CuePlayer :: onStop(void) throw ()
|
CuePlayer :: onStop(Ptr<const std::string>::Ref errorMessage) throw ()
|
||||||
{
|
{
|
||||||
setAudioState(waitingState);
|
setAudioState(waitingState);
|
||||||
}
|
}
|
||||||
|
|
|
@ -180,9 +180,13 @@ class CuePlayer : public Gtk::HBox,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Event handler for the "cue audio player has stopped" event.
|
* Event handler for the "cue audio player has stopped" event.
|
||||||
|
*
|
||||||
|
* @param errorMessage is a 0 pointer if the player stopped normally
|
||||||
*/
|
*/
|
||||||
virtual void
|
virtual void
|
||||||
onStop(void) throw ();
|
onStop(Ptr<const std::string>::Ref errorMessage
|
||||||
|
= Ptr<const std::string>::Ref())
|
||||||
|
throw ();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1318,7 +1318,8 @@ GLiveSupport :: stopOutputAudio(void)
|
||||||
*----------------------------------------------------------------------------*/
|
*----------------------------------------------------------------------------*/
|
||||||
void
|
void
|
||||||
LiveSupport :: GLiveSupport ::
|
LiveSupport :: GLiveSupport ::
|
||||||
GLiveSupport :: onStop(void) throw ()
|
GLiveSupport :: onStop(Ptr<const std::string>::Ref errorMessage)
|
||||||
|
throw ()
|
||||||
{
|
{
|
||||||
outputItemPlayingNow.reset();
|
outputItemPlayingNow.reset();
|
||||||
try {
|
try {
|
||||||
|
|
|
@ -1056,9 +1056,13 @@ class GLiveSupport : public LocalizedConfigurable,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Event handler for the "output audio player has stopped" event.
|
* Event handler for the "output audio player has stopped" event.
|
||||||
|
*
|
||||||
|
* @param errorMessage is a 0 pointer if the player stopped normally
|
||||||
*/
|
*/
|
||||||
virtual void
|
virtual void
|
||||||
onStop(void) throw ();
|
onStop(Ptr<const std::string>::Ref errorMessage
|
||||||
|
= Ptr<const std::string>::Ref())
|
||||||
|
throw ();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Display the playable item on the master panel as "now playing".
|
* Display the playable item on the master panel as "now playing".
|
||||||
|
|
Loading…
Reference in New Issue