minor edit: fixed a typo (thanks, Frans)

This commit is contained in:
fgerlits 2006-11-08 09:28:33 +00:00
parent 02d3438bc2
commit 5dd9c29561
5 changed files with 15 additions and 12 deletions

View file

@ -106,7 +106,7 @@ CuePlayer :: ~CuePlayer(void) throw ()
/*------------------------------------------------------------------------------ /*------------------------------------------------------------------------------
* Event handler for the Play menu item selected from the entry conext menu * Event handler for the Play menu item selected from the entry context menu
*----------------------------------------------------------------------------*/ *----------------------------------------------------------------------------*/
void void
CuePlayer :: onPlayItem(void) throw () CuePlayer :: onPlayItem(void) throw ()

View file

@ -377,7 +377,7 @@ LiveModeWindow :: onKeyPressed(GdkEventKey * event) throw ()
/*------------------------------------------------------------------------------ /*------------------------------------------------------------------------------
* Event handler for the Edit Playlist menu item selected from the * Event handler for the Edit Playlist menu item selected from the
* entry conext menu. * entry context menu.
*----------------------------------------------------------------------------*/ *----------------------------------------------------------------------------*/
void void
LiveModeWindow :: onEditPlaylist(void) throw () LiveModeWindow :: onEditPlaylist(void) throw ()
@ -403,7 +403,7 @@ LiveModeWindow :: onEditPlaylist(void) throw ()
/*------------------------------------------------------------------------------ /*------------------------------------------------------------------------------
* Event handler for the Schedule Playlist menu item selected from the * Event handler for the Schedule Playlist menu item selected from the
* entry conext menu. * entry context menu.
*----------------------------------------------------------------------------*/ *----------------------------------------------------------------------------*/
void void
LiveModeWindow :: onSchedulePlaylist(void) throw () LiveModeWindow :: onSchedulePlaylist(void) throw ()
@ -454,7 +454,7 @@ LiveModeWindow :: onExportPlaylist(void) throw ()
/*------------------------------------------------------------------------------ /*------------------------------------------------------------------------------
* Event handler for the Add To Playlist menu item selected from the * Event handler for the Add To Playlist menu item selected from the
* entry conext menu * entry context menu
*----------------------------------------------------------------------------*/ *----------------------------------------------------------------------------*/
void void
LiveModeWindow :: onAddToPlaylist(void) throw () LiveModeWindow :: onAddToPlaylist(void) throw ()

View file

@ -361,7 +361,7 @@ SchedulerWindow :: onEntryClicked (GdkEventButton * event) throw ()
/*------------------------------------------------------------------------------ /*------------------------------------------------------------------------------
* Event handler for the Delete menu item selected from the entry conext menu * Event handler for the Delete menu item selected from the entry context menu
*----------------------------------------------------------------------------*/ *----------------------------------------------------------------------------*/
void void
SchedulerWindow :: onDeleteItem(void) throw () SchedulerWindow :: onDeleteItem(void) throw ()

View file

@ -414,7 +414,7 @@ ScratchpadWindow :: removeItem(Ptr<const UniqueId>::Ref id) throw ()
/*------------------------------------------------------------------------------ /*------------------------------------------------------------------------------
* Event handler for the Edit Playlist menu item selected from the * Event handler for the Edit Playlist menu item selected from the
* entry conext menu * entry context menu
*----------------------------------------------------------------------------*/ *----------------------------------------------------------------------------*/
void void
ScratchpadWindow :: onEditPlaylist(void) throw () ScratchpadWindow :: onEditPlaylist(void) throw ()
@ -431,7 +431,7 @@ ScratchpadWindow :: onEditPlaylist(void) throw ()
/*------------------------------------------------------------------------------ /*------------------------------------------------------------------------------
* Event handler for the Schedule Playlist menu item selected from the * Event handler for the Schedule Playlist menu item selected from the
* entry conext menu * entry context menu
*----------------------------------------------------------------------------*/ *----------------------------------------------------------------------------*/
void void
ScratchpadWindow :: onSchedulePlaylist(void) throw () ScratchpadWindow :: onSchedulePlaylist(void) throw ()
@ -494,7 +494,7 @@ ScratchpadWindow :: onExportPlaylist(void) throw ()
/*------------------------------------------------------------------------------ /*------------------------------------------------------------------------------
* Event handler for the Add To Playlist menu item selected from the * Event handler for the Add To Playlist menu item selected from the
* entry conext menu * entry context menu
*----------------------------------------------------------------------------*/ *----------------------------------------------------------------------------*/
void void
ScratchpadWindow :: onAddToPlaylist(void) throw () ScratchpadWindow :: onAddToPlaylist(void) throw ()
@ -512,7 +512,7 @@ ScratchpadWindow :: onAddToPlaylist(void) throw ()
/*------------------------------------------------------------------------------ /*------------------------------------------------------------------------------
* Event handler for the Add To Live Mode menu item selected from the * Event handler for the Add To Live Mode menu item selected from the
* entry conext menu * entry context menu
*----------------------------------------------------------------------------*/ *----------------------------------------------------------------------------*/
void void
ScratchpadWindow :: onAddToLiveMode(void) throw () ScratchpadWindow :: onAddToLiveMode(void) throw ()

View file

@ -610,6 +610,8 @@ SearchWindow :: remoteSearchOpen(Ptr<SearchCriteria>::Ref criteria)
throw () throw ()
{ {
displayMessage("pleaseWaitMsg", remoteSearchResults); displayMessage("pleaseWaitMsg", remoteSearchResults);
remoteSearchCriteria.reset();
updatePagingToolbar();
Ptr<StorageClientInterface>::Ref Ptr<StorageClientInterface>::Ref
storage = gLiveSupport->getStorageClient(); storage = gLiveSupport->getStorageClient();
@ -629,6 +631,7 @@ SearchWindow :: remoteSearchOpen(Ptr<SearchCriteria>::Ref criteria)
} catch (XmlRpcException &e) { } catch (XmlRpcException &e) {
displayRemoteSearchError(e); displayRemoteSearchError(e);
} }
std::cerr << "token: " << *remoteSearchToken << std::endl;
remoteSearchCriteria = criteria; remoteSearchCriteria = criteria;
} }
@ -821,7 +824,7 @@ SearchWindow :: onAddToScratchpad(void) throw ()
/*------------------------------------------------------------------------------ /*------------------------------------------------------------------------------
* Signal handler for the Add To Playlist menu item selected from the * Signal handler for the Add To Playlist menu item selected from the
* entry conext menu * entry context menu
*----------------------------------------------------------------------------*/ *----------------------------------------------------------------------------*/
void void
SearchWindow :: onAddToPlaylist(void) throw () SearchWindow :: onAddToPlaylist(void) throw ()
@ -876,7 +879,7 @@ SearchWindow :: onAddToLiveMode(void) throw ()
/*------------------------------------------------------------------------------ /*------------------------------------------------------------------------------
* Event handler for the Edit Playlist menu item selected from the * Event handler for the Edit Playlist menu item selected from the
* entry conext menu. * entry context menu.
*----------------------------------------------------------------------------*/ *----------------------------------------------------------------------------*/
void void
SearchWindow :: onEditPlaylist(void) throw () SearchWindow :: onEditPlaylist(void) throw ()
@ -903,7 +906,7 @@ SearchWindow :: onEditPlaylist(void) throw ()
/*------------------------------------------------------------------------------ /*------------------------------------------------------------------------------
* Event handler for the Schedule Playlist menu item selected from the * Event handler for the Schedule Playlist menu item selected from the
* entry conext menu. * entry context menu.
*----------------------------------------------------------------------------*/ *----------------------------------------------------------------------------*/
void void
SearchWindow :: onSchedulePlaylist(void) throw () SearchWindow :: onSchedulePlaylist(void) throw ()