Renamed private members

This commit is contained in:
fourtf
2018-07-06 19:23:47 +02:00
parent 6935619820
commit 280bb4cf8e
141 changed files with 1754 additions and 1861 deletions
+3 -3
View File
@@ -5,7 +5,7 @@
namespace chatterino {
QualityPopup::QualityPopup(const QString &_channelName, QStringList options)
: channelName(_channelName)
: channelName_(_channelName)
{
this->ui_.okButton.setText("OK");
this->ui_.cancelButton.setText("Cancel");
@@ -41,10 +41,10 @@ void QualityPopup::showDialog(const QString &channelName, QStringList options)
void QualityPopup::okButtonClicked()
{
QString channelURL = "twitch.tv/" + this->channelName;
QString channelURL = "twitch.tv/" + this->channelName_;
try {
OpenStreamlink(channelURL, this->ui_.selector.currentText());
openStreamlink(channelURL, this->ui_.selector.currentText());
} catch (const Exception &ex) {
Log("Exception caught trying to open streamlink: {}", ex.what());
}