refactor: add explicit this-> where possible
I have knowingly skipped some files/portions of files where this would create merge conflicts for other open PRs.
This commit is contained in:
@@ -118,7 +118,7 @@ void TwitchLiveController::request(std::optional<QStringList> optChannelIDs)
|
||||
for (const auto &result : results)
|
||||
{
|
||||
auto it = this->channels.find(result.first);
|
||||
if (it != channels.end())
|
||||
if (it != this->channels.end())
|
||||
{
|
||||
if (auto channel = it->second.ptr.lock(); channel)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user