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:
@@ -626,7 +626,7 @@ void UserInfoPopup::themeChangedEvent()
|
||||
|
||||
void UserInfoPopup::scaleChangedEvent(float /*scale*/)
|
||||
{
|
||||
themeChangedEvent();
|
||||
this->themeChangedEvent();
|
||||
|
||||
QTimer::singleShot(20, this, [this] {
|
||||
auto geo = this->geometry();
|
||||
@@ -815,7 +815,7 @@ void UserInfoPopup::setData(const QString &name,
|
||||
if (isId)
|
||||
{
|
||||
this->userId_ = name.mid(idPrefix.size());
|
||||
updateNotes();
|
||||
this->updateNotes();
|
||||
this->userName_ = "";
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user