renamed isVIP -> isVip

This commit is contained in:
fourtf 2019-10-07 20:31:34 +02:00
parent f25e52b218
commit a894753596
2 changed files with 3 additions and 3 deletions

View file

@ -229,7 +229,7 @@ bool TwitchChannel::isMod() const
return this->mod_;
}
bool TwitchChannel::isVIP() const
bool TwitchChannel::isVip() const
{
return this->vip_;
}
@ -278,7 +278,7 @@ bool TwitchChannel::isBroadcaster() const
bool TwitchChannel::hasHighRateLimit() const
{
return this->isMod() || this->isBroadcaster() || this->isVIP();
return this->isMod() || this->isBroadcaster() || this->isVip();
}
bool TwitchChannel::canReconnect() const

View file

@ -63,7 +63,7 @@ public:
virtual bool canSendMessage() const override;
virtual void sendMessage(const QString &message) override;
virtual bool isMod() const override;
bool isVIP() const;
bool isVip() const;
bool isStaff() const;
virtual bool isBroadcaster() const override;
virtual bool hasHighRateLimit() const override;