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/AsxPlaylistPlugin.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/playlist/AsxPlaylistPlugin.cxx') diff --git a/src/playlist/AsxPlaylistPlugin.cxx b/src/playlist/AsxPlaylistPlugin.cxx index 14063fdf2..23985cad8 100644 --- a/src/playlist/AsxPlaylistPlugin.cxx +++ b/src/playlist/AsxPlaylistPlugin.cxx @@ -205,7 +205,7 @@ asx_parser_destroy(gpointer data) */ static SongEnumerator * -asx_open_stream(struct input_stream *is) +asx_open_stream(InputStream &is) { AsxParser parser; GMarkupParseContext *context; @@ -222,7 +222,7 @@ asx_open_stream(struct input_stream *is) &parser, asx_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