head 1.2; access; symbols pkgsrc-2019Q3:1.1.0.22 pkgsrc-2019Q3-base:1.1 pkgsrc-2019Q2:1.1.0.20 pkgsrc-2019Q2-base:1.1 pkgsrc-2019Q1:1.1.0.18 pkgsrc-2019Q1-base:1.1 pkgsrc-2018Q4:1.1.0.16 pkgsrc-2018Q4-base:1.1 pkgsrc-2018Q3:1.1.0.14 pkgsrc-2018Q3-base:1.1 pkgsrc-2018Q2:1.1.0.12 pkgsrc-2018Q2-base:1.1 pkgsrc-2018Q1:1.1.0.10 pkgsrc-2018Q1-base:1.1 pkgsrc-2017Q4:1.1.0.8 pkgsrc-2017Q4-base:1.1 pkgsrc-2017Q3:1.1.0.6 pkgsrc-2017Q3-base:1.1 pkgsrc-2017Q2:1.1.0.2 pkgsrc-2017Q2-base:1.1; locks; strict; comment @// @; 1.2 date 2019.10.28.10.20.57; author kamil; state dead; branches; next 1.1; commitid GvCXYpqkpDNCvCIB; 1.1 date 2017.06.17.19.36.06; author joerg; state Exp; branches; next ; commitid zfMUG1Ah3wLrkLVz; desc @@ 1.2 log @mp3diags: Upgrade to unstable tarball 1.5.01 This upgrade switches qt4 to qt5. UPSTREAM CHANGELOG ================== --------------------------------------------------------------------------- 06.04.2019 - 1.5.01 - Qt5 port --------------------------------------------------------------------------- 29.07.2016 - 1.3.04 - made code compile with GCC 6 - retries on file read failure - fix for UTF8 output in calls to mp3gain (Linux only) - new transformation: "Remove Xing or LAME streams from CBR files" - always show sessions button if there are more than 1 sessions --------------------------------------------------------------------------- 08.03.2015 - 1.3.03 - improved error reporting - speed improvements for external drives (USB, network, ...) - different treatment for the Xing frame being included in the frame count --------------------------------------------------------------------------- 17.07.2014 - 1.3.01 - fixed crash caused by saving very small images - build fix - disabled Discogs integration --------------------------------------------------------------------------- 16.01.2014 - 1.3.00 - build fix for clang and for Solaris - added offset to the output created via the command line - fixed incorrect message occurring some times when start after a crash - better logging and retries for write errors - fixed broken links in documentation and moved alternate downloads from Dropbox to my ISP - new version number to support the new "unstable" branch @ text @$NetBSD: patch-src_MainFormDlgImpl.cpp,v 1.1 2017/06/17 19:36:06 joerg Exp $ --- src/MainFormDlgImpl.cpp.orig 2017-06-10 15:47:07.854499376 +0000 +++ src/MainFormDlgImpl.cpp @@@@ -119,7 +119,7 @@@@ namespace { m_strFileName = strFileName; ofstream_utf8 out (m_strFileName.c_str(), ios_base::app); - return out; + return bool(out); } void close() { m_strFileName.clear(); } @@@@ -128,7 +128,7 @@@@ namespace { ofstream_utf8 out (m_strFileName.c_str(), ios_base::app); out << s; - return out; + return bool(out); } }; #else // #ifndef WIN32 @ 1.1 log @operator bool for streams is explicit in C++11, so request it where necessary. @ text @d1 1 a1 1 $NetBSD$ @