From 234ebf8ce86bcfe6a75dd04542ae7acd1c020657 Mon Sep 17 00:00:00 2001 From: Tomasz Sowa Date: Thu, 3 Feb 2022 20:57:38 +0100 Subject: [PATCH] change HtmlTextStream iterators type to pt::WTextStream::iterator --- winixd/templates/htmltextstream.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/winixd/templates/htmltextstream.h b/winixd/templates/htmltextstream.h index 3f3757a..9bdc3fd 100644 --- a/winixd/templates/htmltextstream.h +++ b/winixd/templates/htmltextstream.h @@ -5,7 +5,7 @@ */ /* - * Copyright (c) 2010-2021, Tomasz Sowa + * Copyright (c) 2010-2022, Tomasz Sowa * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -81,9 +81,8 @@ class HtmlTextStream : public pt::Stream public: typedef wchar_t char_type; - typedef pt::WTextStream::buffer_type buffer_type; - typedef typename buffer_type::iterator iterator; - typedef typename buffer_type::const_iterator const_iterator; + typedef pt::WTextStream::iterator iterator; + typedef pt::WTextStream::const_iterator const_iterator; HtmlTextStream();