Mailing List Archive

mythtv branch master updated by dhampton. v30-Pre-402-g4442e68
The branch, master has been updated on the
mythtv repository by gitolite user dhampton.
via 4442e68c14f4342a5693325fe527c7ce13c55fea (commit)
via 38374baaee2aaa28e7313e0383bc4ead68a17414 (commit)
via 6c0ca5fe149271a6404b7fdc0d218371530f3cea (commit)
via 0f91b4b28d8b7ea6483580e0348414353880e94b (commit)
via 8bf301499cc1900accf1ce5d3ac40fd4b910c186 (commit)
via aad51997c99c9a591c47a64e1329f7e0631a4f36 (commit)
via 7bba604d07dab4fc89888a35789bb3aaa02d1239 (commit)
via 287cababb06720184ddd596089a0d0411ef9ce2f (commit)
via 50992995fa916f8398d9139cdac851e89146a81e (commit)
via 029da669732de34088fe9bde8f5371c4e5dd8f5d (commit)
via e904c744e5056be417f6e4e077f0560b367d755b (commit)
via d0b261f2e106c88855cf5dfeabe7b3791e66b0a6 (commit)
via 2fcedd83168d8b73b70a07f8a1c1edd77028c73d (commit)
from c3e9bd086e790d5b6f8a32a3e4e8d3f56c4f8f66 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 4442e68c14f4342a5693325fe527c7ce13c55fea
Author: David Hampton <mythtv@love2code.net> at Tue, 16 Jan 2018 21:22:19 -0500
Committer: David Hampton <mythtv@love2code.net> at Wed, 17 Jan 2018 01:21:00 -0500
URL: http://code.mythtv.org/cgit/mythtv/commit/?id=4442e68c14f4342a5693325fe527c7ce13c55fea

Replace deprecated qBinaryFind function with std::lower_bound.
According to the Qt5.0 documentation, you should use standard library
functions instead of the Qt supplied qBinaryFind function. The docs
recommend std::binary_search (for testing if an item is in a
container) or std::lower_bound (for finding an item in a container).
The old function has been deprecated.



commit 38374baaee2aaa28e7313e0383bc4ead68a17414
Author: David Hampton <mythtv@love2code.net> at Fri, 12 Jan 2018 20:51:24 -0500
Committer: David Hampton <mythtv@love2code.net> at Wed, 17 Jan 2018 01:21:00 -0500
URL: http://code.mythtv.org/cgit/mythtv/commit/?id=38374baaee2aaa28e7313e0383bc4ead68a17414

Replace deprecated Qt sort functions with standard sort functions.
According to the Qt5.0 documentation, you should use the STL sorting
functions instead of the Qt supplied sorting functions. The old Qt
sort functions have been deprecated.



commit 6c0ca5fe149271a6404b7fdc0d218371530f3cea
Author: David Hampton <mythtv@love2code.net> at Tue, 16 Jan 2018 20:56:29 -0500
Committer: David Hampton <mythtv@love2code.net> at Wed, 17 Jan 2018 01:21:00 -0500
URL: http://code.mythtv.org/cgit/mythtv/commit/?id=6c0ca5fe149271a6404b7fdc0d218371530f3cea

The supportedCiphers() function moved to QSslConfiguration in Qt5.5.



commit 0f91b4b28d8b7ea6483580e0348414353880e94b
Author: David Hampton <mythtv@love2code.net> at Fri, 12 Jan 2018 20:17:41 -0500
Committer: David Hampton <mythtv@love2code.net> at Wed, 17 Jan 2018 01:21:00 -0500
URL: http://code.mythtv.org/cgit/mythtv/commit/?id=0f91b4b28d8b7ea6483580e0348414353880e94b

Replace QString::null with QString() in data structure declarations.
The QString::null value was officially deprecated in Qt 5.9.
According to the commit message where it was deprecated, this value
was a worrisome holdover from Qt3 and should be eliminated from code.



commit 8bf301499cc1900accf1ce5d3ac40fd4b910c186
Author: David Hampton <mythtv@love2code.net> at Fri, 12 Jan 2018 20:08:54 -0500
Committer: David Hampton <mythtv@love2code.net> at Wed, 17 Jan 2018 01:21:00 -0500
URL: http://code.mythtv.org/cgit/mythtv/commit/?id=8bf301499cc1900accf1ce5d3ac40fd4b910c186

Replace QString::null with QString() in ternary operator equations.
The QString::null value was officially deprecated in Qt 5.9.
According to the commit message where it was deprecated, this value
was a worrisome holdover from Qt3 and should be eliminated from code.



commit aad51997c99c9a591c47a64e1329f7e0631a4f36
Author: David Hampton <mythtv@love2code.net> at Fri, 12 Jan 2018 19:59:38 -0500
Committer: David Hampton <mythtv@love2code.net> at Wed, 17 Jan 2018 01:21:00 -0500
URL: http://code.mythtv.org/cgit/mythtv/commit/?id=aad51997c99c9a591c47a64e1329f7e0631a4f36

Use QString() instead of QString::null when assiging via a pointer dereference.
The QString::null value was officially deprecated in Qt 5.9.
According to the commit message where it was deprecated, this value
was a worrisome holdover from Qt3 and should be eliminated from code.



commit 7bba604d07dab4fc89888a35789bb3aaa02d1239
Author: David Hampton <mythtv@love2code.net> at Fri, 12 Jan 2018 19:56:13 -0500
Committer: David Hampton <mythtv@love2code.net> at Wed, 17 Jan 2018 01:21:00 -0500
URL: http://code.mythtv.org/cgit/mythtv/commit/?id=7bba604d07dab4fc89888a35789bb3aaa02d1239

Replace assigning QString::null to a string with a call to clear().
The QString::null value was officially deprecated in Qt 5.9.
According to the commit message where it was deprecated, this value
was a worrisome holdover from Qt3 and should be eliminated from code.
Replacing assignment of QString::null with a call to clear() was also
used in the commit to Qt that deprecated QString::null.



commit 287cababb06720184ddd596089a0d0411ef9ce2f
Author: David Hampton <mythtv@love2code.net> at Fri, 12 Jan 2018 19:33:23 -0500
Committer: David Hampton <mythtv@love2code.net> at Wed, 17 Jan 2018 01:20:59 -0500
URL: http://code.mythtv.org/cgit/mythtv/commit/?id=287cababb06720184ddd596089a0d0411ef9ce2f

Replace function default arguments of QString::null with QString().
The QString::null value was officially deprecated in Qt 5.9.
According to the commit message where it was deprecated, this value
was a worrisome holdover from Qt3 and should be eliminated from code.



commit 50992995fa916f8398d9139cdac851e89146a81e
Author: David Hampton <mythtv@love2code.net> at Fri, 12 Jan 2018 19:11:01 -0500
Committer: David Hampton <mythtv@love2code.net> at Wed, 17 Jan 2018 01:20:59 -0500
URL: http://code.mythtv.org/cgit/mythtv/commit/?id=50992995fa916f8398d9139cdac851e89146a81e

Replace all usage of QString::null in a function call with QString().
The QString::null value was officially deprecated in Qt 5.9.
According to the commit message where it was deprecated, this value
was a worrisome holdover from Qt3 and should be eliminated from code.



commit 029da669732de34088fe9bde8f5371c4e5dd8f5d
Author: David Hampton <mythtv@love2code.net> at Fri, 12 Jan 2018 18:57:45 -0500
Committer: David Hampton <mythtv@love2code.net> at Wed, 17 Jan 2018 01:20:59 -0500
URL: http://code.mythtv.org/cgit/mythtv/commit/?id=029da669732de34088fe9bde8f5371c4e5dd8f5d

Don't use QString::null in class constructors.
The QString::null value was officially deprecated in Qt 5.9.
According to the commit message where it was deprecated, this value
was a worrisome holdover from Qt3 and should be eliminated from code.
Constructing new instances of class strings using QString::null is
essentially the same as using the default constructor, so remove any
such initialization.



commit e904c744e5056be417f6e4e077f0560b367d755b
Author: David Hampton <mythtv@love2code.net> at Fri, 12 Jan 2018 18:16:13 -0500
Committer: David Hampton <mythtv@love2code.net> at Wed, 17 Jan 2018 01:20:59 -0500
URL: http://code.mythtv.org/cgit/mythtv/commit/?id=e904c744e5056be417f6e4e077f0560b367d755b

Don't assign newly declared QStrings the value QString::null.
The QString::null value was officially deprecated in Qt 5.9.
According to the commit message where it was deprecated, this value
was a worrisome holdover from Qt3 and should be eliminated from code.
Assigning newly declared strings the value of QString::null is
essentially redundant, and will stop working in the future, so remove
any such assignment.



commit d0b261f2e106c88855cf5dfeabe7b3791e66b0a6
Author: David Hampton <mythtv@love2code.net> at Fri, 12 Jan 2018 00:33:53 -0500
Committer: David Hampton <mythtv@love2code.net> at Wed, 17 Jan 2018 01:20:59 -0500
URL: http://code.mythtv.org/cgit/mythtv/commit/?id=d0b261f2e106c88855cf5dfeabe7b3791e66b0a6

Return QString() from functions, instead of QString::null.
The QString::null value was officially deprecated in Qt 5.9.
According to the commit message where it was deprecated, this value
was a worrisome holdover from Qt3 and should be eliminated from code.
This patch replaces all instances where the value was returned from a
function.



commit 2fcedd83168d8b73b70a07f8a1c1edd77028c73d
Author: David Hampton <mythtv@love2code.net> at Thu, 11 Jan 2018 19:22:16 -0500
Committer: David Hampton <mythtv@love2code.net> at Wed, 17 Jan 2018 01:20:59 -0500
URL: http://code.mythtv.org/cgit/mythtv/commit/?id=2fcedd83168d8b73b70a07f8a1c1edd77028c73d

Remove usage of QString::null when used to test for a null string.
The QString::null value was officially deprecated in Qt 5.9.
According to the commit message where it was deprecated, this value
was a worrisome holdover from Qt3 and should be eliminated from code.
This patch removes all instances where the value was used to test
whether a string contains a value. The commit messages says to use
QString::isNull, but the Qt documentation says that what you probably
really want is QString::isEmpty. This patch uses the latter, except
in places where it seems obvious that the code writer truly thought
the string might be null. The remaining instances that check for null
probably need to be revisited.



-----------------------------------------------------------------------

Summary of changes:
mythplugins/mythgallery/mythgallery/gltexture.cpp | 2 +-
mythplugins/mythgallery/mythgallery/imageview.cpp | 1 -
mythplugins/mythgallery/mythgallery/main.cpp | 2 +-
mythplugins/mythgallery/mythgallery/singleview.cpp | 2 +-
mythplugins/mythgallery/mythgallery/thumbview.cpp | 2 +-
mythplugins/mythgallery/mythgallery/thumbview.h | 3 +-
mythplugins/mythgame/mythgame/gamehandler.cpp | 2 +-
mythplugins/mythgame/mythgame/gamehandler.h | 5 +--
mythplugins/mythmusic/mythmusic/main.cpp | 2 +-
mythplugins/mythmusic/mythmusic/smartplaylist.cpp | 2 +-
mythplugins/mythnews/mythnews/newsarticle.cpp | 20 +------
mythplugins/mythnews/mythnews/newssite.cpp | 32 +++++------
mythplugins/mythweather/mythweather/weatherUtils.h | 2 +-
mythtv/libs/libmyth/audio/audiooutput.cpp | 6 +-
mythtv/libs/libmyth/audio/audiooutput.h | 3 +-
mythtv/libs/libmyth/audio/audiosettings.cpp | 4 --
mythtv/libs/libmyth/audio/audiosettings.h | 2 +-
mythtv/libs/libmyth/dbsettings.h | 2 +-
mythtv/libs/libmyth/mythcontext.cpp | 6 +-
mythtv/libs/libmyth/mythwidgets.cpp | 10 ++--
mythtv/libs/libmyth/mythwizard.cpp | 6 +-
mythtv/libs/libmyth/settings.cpp | 4 +-
mythtv/libs/libmyth/settings.h | 18 +++---
mythtv/libs/libmyth/standardsettings.h | 2 +-
mythtv/libs/libmythbase/dbutil.cpp | 16 +++---
mythtv/libs/libmythbase/mythcorecontext.cpp | 2 -
mythtv/libs/libmythbase/mythdbcon.cpp | 4 +-
mythtv/libs/libmythbase/mythdirs.cpp | 26 +++++-----
mythtv/libs/libmythbase/mythdownloadmanager.cpp | 4 +-
mythtv/libs/libmythbase/mythmedia.cpp | 4 +-
mythtv/libs/libmythbase/mythmiscutil.cpp | 6 +-
mythtv/libs/libmythbase/mythstorage.h | 2 +-
mythtv/libs/libmythmetadata/videoscan.cpp | 2 +-
.../libs/libmythtv/AirPlay/mythraopconnection.cpp | 2 +-
mythtv/libs/libmythtv/HLS/httplivestreambuffer.cpp | 2 +-
mythtv/libs/libmythtv/audioplayer.cpp | 6 +-
mythtv/libs/libmythtv/cardutil.cpp | 11 ++--
mythtv/libs/libmythtv/cardutil.h | 16 +++---
mythtv/libs/libmythtv/cc608decoder.cpp | 5 +-
.../libs/libmythtv/channelscan/channelimporter.cpp | 12 ++--
.../libs/libmythtv/channelscan/channelscan_sm.cpp | 15 +++---
mythtv/libs/libmythtv/channelscan/channelscan_sm.h | 4 +-
mythtv/libs/libmythtv/channelscan/channelscanner.h | 4 +-
.../libmythtv/channelscan/inputselectorsetting.cpp | 6 +-
.../libmythtv/channelscan/iptvchannelfetcher.cpp | 12 ++--
.../libmythtv/channelscan/scanwizardconfig.cpp | 5 +-
.../libmythtv/channelscan/vboxchannelfetcher.cpp | 20 ++++----
mythtv/libs/libmythtv/channelutil.cpp | 33 ++++++-----
mythtv/libs/libmythtv/channelutil.h | 16 +++---
mythtv/libs/libmythtv/datadirect.cpp | 18 +++----
mythtv/libs/libmythtv/datadirect.h | 10 +---
mythtv/libs/libmythtv/decoderbase.h | 2 +-
mythtv/libs/libmythtv/diseqc.cpp | 12 ++--
mythtv/libs/libmythtv/diseqcsettings.cpp | 8 ++--
mythtv/libs/libmythtv/dtvconfparser.h | 2 +-
mythtv/libs/libmythtv/dtvconfparserhelpers.cpp | 2 +-
mythtv/libs/libmythtv/dtvmultiplex.cpp | 2 +-
mythtv/libs/libmythtv/dtvmultiplex.h | 2 +-
mythtv/libs/libmythtv/dvdstream.cpp | 3 +-
mythtv/libs/libmythtv/eitfixup.cpp | 8 ++--
mythtv/libs/libmythtv/eithelper.cpp | 2 +-
mythtv/libs/libmythtv/fileringbuffer.cpp | 2 +-
mythtv/libs/libmythtv/inputinfo.cpp | 4 +-
mythtv/libs/libmythtv/inputinfo.h | 3 +-
mythtv/libs/libmythtv/mpeg/atscdescriptors.cpp | 2 +-
mythtv/libs/libmythtv/mpeg/atsctables.cpp | 4 +-
mythtv/libs/libmythtv/mpeg/atsctables.h | 2 +-
mythtv/libs/libmythtv/mpeg/dishdescriptors.cpp | 8 ++--
mythtv/libs/libmythtv/mpeg/dvbtables.cpp | 2 +-
mythtv/libs/libmythtv/mpeg/dvbtables.h | 4 +-
mythtv/libs/libmythtv/mpeg/mpegdescriptors.cpp | 2 +-
mythtv/libs/libmythtv/mpeg/mpegtables.cpp | 2 +-
mythtv/libs/libmythtv/mythcodecid.cpp | 4 +-
mythtv/libs/libmythtv/mythplayer.cpp | 4 +-
mythtv/libs/libmythtv/openglvideo.cpp | 3 +-
mythtv/libs/libmythtv/openglvideo.h | 6 +-
mythtv/libs/libmythtv/playercontext.cpp | 12 ++--
mythtv/libs/libmythtv/previewgenerator.cpp | 2 +-
mythtv/libs/libmythtv/profilegroup.cpp | 2 +-
mythtv/libs/libmythtv/programdata.cpp | 2 +-
mythtv/libs/libmythtv/programdata.h | 11 +----
.../libs/libmythtv/recorders/DeviceReadBuffer.cpp | 4 +-
.../libmythtv/recorders/NuppelVideoRecorder.cpp | 4 +-
mythtv/libs/libmythtv/recorders/avcinfo.cpp | 2 +-
mythtv/libs/libmythtv/recorders/dtvchannel.cpp | 2 +-
mythtv/libs/libmythtv/recorders/dvbrecorder.cpp | 2 +-
.../libs/libmythtv/recorders/hdhrstreamhandler.cpp | 12 ++--
mythtv/libs/libmythtv/recorders/mpegrecorder.cpp | 1 -
mythtv/libs/libmythtv/recorders/v4lchannel.cpp | 2 +-
mythtv/libs/libmythtv/recordingprofile.cpp | 10 ++--
mythtv/libs/libmythtv/scanwizard.h | 2 +-
mythtv/libs/libmythtv/signalmonitorvalue.cpp | 6 +-
mythtv/libs/libmythtv/signalmonitorvalue.h | 4 +-
mythtv/libs/libmythtv/sourceutil.cpp | 4 +-
mythtv/libs/libmythtv/sourceutil.h | 2 +-
mythtv/libs/libmythtv/subtitlescreen.cpp | 2 +-
mythtv/libs/libmythtv/transporteditor.cpp | 2 +-
mythtv/libs/libmythtv/tv_play.cpp | 40 +++++++-------
mythtv/libs/libmythtv/tv_play.h | 2 +-
mythtv/libs/libmythtv/tv_rec.cpp | 20 ++++----
mythtv/libs/libmythtv/tv_rec.h | 10 ++--
mythtv/libs/libmythtv/tvbrowsehelper.cpp | 2 +-
mythtv/libs/libmythtv/v4l2util.cpp | 3 +-
mythtv/libs/libmythtv/videocolourspace.cpp | 2 +-
mythtv/libs/libmythtv/videodisplayprofile.cpp | 11 ++--
mythtv/libs/libmythtv/videodisplayprofile.h | 2 +-
mythtv/libs/libmythtv/videoout_opengl.cpp | 2 +-
mythtv/libs/libmythtv/videoout_xv.cpp | 10 ++--
mythtv/libs/libmythtv/videooutbase.cpp | 7 +--
mythtv/libs/libmythtv/videoouttypes.h | 10 ++--
mythtv/libs/libmythtv/videosource.cpp | 55 +++++++++-----------
mythtv/libs/libmythtv/videosource.h | 4 +-
mythtv/libs/libmythui/mythuihelper.cpp | 2 +-
mythtv/libs/libmythupnp/httprequest.cpp | 2 +-
mythtv/libs/libmythupnp/httpserver.cpp | 4 ++
mythtv/programs/mythbackend/mainserver.cpp | 2 +-
.../programs/mythfrontend/audiogeneralsettings.cpp | 2 +-
mythtv/programs/mythfrontend/main.cpp | 4 +-
mythtv/programs/mythfrontend/setupwizard_audio.cpp | 2 +-
mythtv/programs/mythtranscode/transcode.cpp | 2 +-
mythtv/programs/mythtv-setup/main.cpp | 4 +-
121 files changed, 373 insertions(+), 419 deletions(-)

--

_______________________________________________
mythtv-firehose mailing list
mythtv-firehose@mythtv.org
http://lists.mythtv.org/mailman/listinfo/mythtv-firehose