(minor edit) got rid of some obsolete references to the Storage namespace;
related to #1670
This commit is contained in:
parent
f4062235f3
commit
9f9bd0dfbf
7 changed files with 12 additions and 10 deletions
|
@ -311,8 +311,8 @@ class AudioClip : public Configurable,
|
|||
* // storage client
|
||||
* </code></pre>
|
||||
*
|
||||
* @see Storage::StorageClientFactory
|
||||
* @see Storage::StorageClientInterface
|
||||
* @see StorageClient::StorageClientFactory
|
||||
* @see StorageClient::StorageClientInterface
|
||||
*
|
||||
* @param playlength the playing length of the audio clip.
|
||||
* @param title the title of the audio clip.
|
||||
|
|
|
@ -353,8 +353,8 @@ class Playlist : public Configurable,
|
|||
* playlist = storageClient->createPlaylist(sessionId);
|
||||
* </code></pre>
|
||||
*
|
||||
* @see Storage::StorageClientFactory
|
||||
* @see Storage::StorageClientInterface
|
||||
* @see StorageClient::StorageClientFactory
|
||||
* @see StorageClient::StorageClientInterface
|
||||
*/
|
||||
Playlist(void) throw ()
|
||||
: Playable(PlaylistType)
|
||||
|
|
|
@ -119,7 +119,7 @@ class AdvancedSearchEntry : public Gtk::VBox,
|
|||
/**
|
||||
* Return the current state of the search fields.
|
||||
*
|
||||
* @return a new LiveSupport::Storage::SearchCriteria instance,
|
||||
* @return a new LiveSupport::StorageClient::SearchCriteria instance,
|
||||
* which contains the data entered by the user
|
||||
*/
|
||||
Ptr<SearchCriteria>::Ref
|
||||
|
|
|
@ -152,7 +152,7 @@ class AdvancedSearchItem : public Gtk::HBox,
|
|||
/**
|
||||
* Return the current state of the search fields.
|
||||
*
|
||||
* @return a new LiveSupport::Storage::SearchCriteria instance,
|
||||
* @return a new LiveSupport::StorageClient::SearchCriteria instance,
|
||||
* which contains the data entered by the user
|
||||
*/
|
||||
Ptr<SearchCriteria::SearchConditionType>::Ref
|
||||
|
|
|
@ -115,7 +115,7 @@ class BrowseEntry : public Gtk::HBox,
|
|||
/**
|
||||
* Return the current state of the search fields.
|
||||
*
|
||||
* @return a new LiveSupport::Storage::SearchCriteria instance,
|
||||
* @return a new LiveSupport::StorageClient::SearchCriteria instance,
|
||||
* which contains the data entered by the user
|
||||
*/
|
||||
Ptr<SearchCriteria>::Ref
|
||||
|
|
|
@ -206,7 +206,7 @@ class BrowseItem : public Gtk::VBox,
|
|||
* with the search condition showing the current selection added
|
||||
* (if any).
|
||||
*
|
||||
* @return a new LiveSupport::Storage::SearchCriteria instance,
|
||||
* @return a new LiveSupport::StorageClient::SearchCriteria instance,
|
||||
* which contains the data entered by the user
|
||||
*/
|
||||
Ptr<SearchCriteria>::Ref
|
||||
|
|
|
@ -935,7 +935,8 @@ class GLiveSupport : public LocalizedConfigurable,
|
|||
*
|
||||
* @param criteria the search conditions to use.
|
||||
* @return the list of audio clips and playlists found.
|
||||
* @exception XmlRpcException passed on from Storage::search()
|
||||
* @exception XmlRpcException thrown by
|
||||
* StorageClientInterface::search()
|
||||
*/
|
||||
Ptr<PlayableList>::Ref
|
||||
search(Ptr<SearchCriteria>::Ref criteria)
|
||||
|
@ -957,7 +958,8 @@ class GLiveSupport : public LocalizedConfigurable,
|
|||
* @param metadata the type of metadata to list (e.g., "dc:title").
|
||||
* @param criteria the search conditions to use.
|
||||
* @return the list of metadata values found.
|
||||
* @exception XmlRpcException passed on from Storage::browse()
|
||||
* @exception XmlRpcException thrown by
|
||||
* StorageClientInterface::browse()
|
||||
*/
|
||||
Ptr<std::vector<Glib::ustring> >::Ref
|
||||
browse(Ptr<const Glib::ustring>::Ref metadata,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue