Index: control-dvd.c =================================================================== RCS file: /cvsroot/dvdplugin/dvd/control-dvd.c,v retrieving revision 1.14 diff -u -r1.14 control-dvd.c --- control-dvd.c 12 Apr 2005 16:26:48 -0000 1.14 +++ control-dvd.c 8 Jan 2006 13:57:17 -0000 @@ -54,13 +54,13 @@ player->setController(this); - cStatus::MsgReplaying(this, "DVD"); + cStatus::MsgReplaying(this, "DVD", NULL, true ); } cDvdPlayerControl::~cDvdPlayerControl() { Hide(); - cStatus::MsgReplaying(this, NULL); + cStatus::MsgReplaying(this, "DVD", NULL, false ); Stop(); assert(dvd_active == true); dvd_active = false; @@ -310,7 +310,7 @@ lastCurrent = lastTotal = -1; last_title_buffer[0]=0; displayReplay->SetTitle("unknown title"); - cStatus::MsgReplaying(this, "unknown title"); + cStatus::MsgReplaying(this, "DVD", "unknown title", true); } if (player) { @@ -318,7 +318,7 @@ if ( strcmp(title_buffer,last_title_buffer) != 0 ) { displayReplay->SetTitle(title_buffer); if (!Initial) displayReplay->Flush(); - cStatus::MsgReplaying(this, title_buffer); + cStatus::MsgReplaying(this, "DVD", title_buffer, true); strcpy(last_title_buffer, title_buffer); } } @@ -568,7 +568,7 @@ title_buffer = GetDisplayHeaderLine(); if ( strcmp(title_buffer,last_title_buffer) != 0 ) { strcpy(last_title_buffer, title_buffer); - cStatus::MsgReplaying(this, title_buffer); + cStatus::MsgReplaying(this, "DVD", title_buffer, true); } } }