From 93deb844996120b6326345d6d87e803142dd1968 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 23 Oct 2013 22:08:59 +0200 Subject: input_stream: rename struct to InputStream --- src/playlist/RssPlaylistPlugin.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/playlist/RssPlaylistPlugin.cxx') diff --git a/src/playlist/RssPlaylistPlugin.cxx b/src/playlist/RssPlaylistPlugin.cxx index 4aa6f1026..43ad68cf6 100644 --- a/src/playlist/RssPlaylistPlugin.cxx +++ b/src/playlist/RssPlaylistPlugin.cxx @@ -202,7 +202,7 @@ rss_parser_destroy(gpointer data) */ static SongEnumerator * -rss_open_stream(struct input_stream *is) +rss_open_stream(InputStream &is) { RssParser parser; GMarkupParseContext *context; @@ -219,7 +219,7 @@ rss_open_stream(struct input_stream *is) &parser, rss_parser_destroy); while (true) { - nbytes = is->LockRead(buffer, sizeof(buffer), error2); + nbytes = is.LockRead(buffer, sizeof(buffer), error2); if (nbytes == 0) { if (error2.IsDefined()) { g_markup_parse_context_free(context); -- cgit v1.2.3