part of #2165 (just making sure everything compiles, first)

This commit is contained in:
fgerlits 2007-02-08 15:17:22 +00:00
parent 7bdbfa5968
commit 5efbf6a26f
4 changed files with 13 additions and 4 deletions

View File

@ -205,7 +205,7 @@ CuePlayer :: onStopButtonClicked(void) throw ()
* Event handler for the "cue audio player has stopped" event.
*----------------------------------------------------------------------------*/
void
CuePlayer :: onStop(void) throw ()
CuePlayer :: onStop(Ptr<const std::string>::Ref errorMessage) throw ()
{
setAudioState(waitingState);
}

View File

@ -180,9 +180,13 @@ class CuePlayer : public Gtk::HBox,
/**
* Event handler for the "cue audio player has stopped" event.
*
* @param errorMessage is a 0 pointer if the player stopped normally
*/
virtual void
onStop(void) throw ();
onStop(Ptr<const std::string>::Ref errorMessage
= Ptr<const std::string>::Ref())
throw ();
};

View File

@ -1318,7 +1318,8 @@ GLiveSupport :: stopOutputAudio(void)
*----------------------------------------------------------------------------*/
void
LiveSupport :: GLiveSupport ::
GLiveSupport :: onStop(void) throw ()
GLiveSupport :: onStop(Ptr<const std::string>::Ref errorMessage)
throw ()
{
outputItemPlayingNow.reset();
try {

View File

@ -1056,9 +1056,13 @@ class GLiveSupport : public LocalizedConfigurable,
/**
* Event handler for the "output audio player has stopped" event.
*
* @param errorMessage is a 0 pointer if the player stopped normally
*/
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".