(minor edit) got rid of some obsolete references to the Storage namespace;

related to #1670
This commit is contained in:
fgerlits 2006-06-28 15:02:19 +00:00
parent f4062235f3
commit 9f9bd0dfbf
7 changed files with 12 additions and 10 deletions

View file

@ -311,8 +311,8 @@ class AudioClip : public Configurable,
* // storage client * // storage client
* </code></pre> * </code></pre>
* *
* @see Storage::StorageClientFactory * @see StorageClient::StorageClientFactory
* @see Storage::StorageClientInterface * @see StorageClient::StorageClientInterface
* *
* @param playlength the playing length of the audio clip. * @param playlength the playing length of the audio clip.
* @param title the title of the audio clip. * @param title the title of the audio clip.

View file

@ -353,8 +353,8 @@ class Playlist : public Configurable,
* playlist = storageClient->createPlaylist(sessionId); * playlist = storageClient->createPlaylist(sessionId);
* </code></pre> * </code></pre>
* *
* @see Storage::StorageClientFactory * @see StorageClient::StorageClientFactory
* @see Storage::StorageClientInterface * @see StorageClient::StorageClientInterface
*/ */
Playlist(void) throw () Playlist(void) throw ()
: Playable(PlaylistType) : Playable(PlaylistType)

View file

@ -119,7 +119,7 @@ class AdvancedSearchEntry : public Gtk::VBox,
/** /**
* Return the current state of the search fields. * 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 * which contains the data entered by the user
*/ */
Ptr<SearchCriteria>::Ref Ptr<SearchCriteria>::Ref

View file

@ -152,7 +152,7 @@ class AdvancedSearchItem : public Gtk::HBox,
/** /**
* Return the current state of the search fields. * 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 * which contains the data entered by the user
*/ */
Ptr<SearchCriteria::SearchConditionType>::Ref Ptr<SearchCriteria::SearchConditionType>::Ref

View file

@ -115,7 +115,7 @@ class BrowseEntry : public Gtk::HBox,
/** /**
* Return the current state of the search fields. * 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 * which contains the data entered by the user
*/ */
Ptr<SearchCriteria>::Ref Ptr<SearchCriteria>::Ref

View file

@ -206,7 +206,7 @@ class BrowseItem : public Gtk::VBox,
* with the search condition showing the current selection added * with the search condition showing the current selection added
* (if any). * (if any).
* *
* @return a new LiveSupport::Storage::SearchCriteria instance, * @return a new LiveSupport::StorageClient::SearchCriteria instance,
* which contains the data entered by the user * which contains the data entered by the user
*/ */
Ptr<SearchCriteria>::Ref Ptr<SearchCriteria>::Ref

View file

@ -935,7 +935,8 @@ class GLiveSupport : public LocalizedConfigurable,
* *
* @param criteria the search conditions to use. * @param criteria the search conditions to use.
* @return the list of audio clips and playlists found. * @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 Ptr<PlayableList>::Ref
search(Ptr<SearchCriteria>::Ref criteria) 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 metadata the type of metadata to list (e.g., "dc:title").
* @param criteria the search conditions to use. * @param criteria the search conditions to use.
* @return the list of metadata values found. * @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 Ptr<std::vector<Glib::ustring> >::Ref
browse(Ptr<const Glib::ustring>::Ref metadata, browse(Ptr<const Glib::ustring>::Ref metadata,