Renamed User* to Account* (#41)

This commit is contained in:
Bur0k
2017-04-19 15:24:19 +02:00
committed by fourtf
parent 780286582f
commit 38062cb3c5
4 changed files with 11 additions and 11 deletions
+3 -3
View File
@@ -7,9 +7,9 @@
namespace chatterino {
namespace widgets {
UserPopupWidget::UserPopupWidget(std::shared_ptr<Channel> &&channel)
AccountPopupWidget::AccountPopupWidget(std::shared_ptr<Channel> &&channel)
: QWidget(nullptr)
, _ui(new Ui::UserPopup)
, _ui(new Ui::AccountPopup)
, _channel(std::move(channel))
{
_ui->setupUi(this);
@@ -32,7 +32,7 @@ UserPopupWidget::UserPopupWidget(std::shared_ptr<Channel> &&channel)
});
}
void UserPopupWidget::setName(const QString &name)
void AccountPopupWidget::setName(const QString &name)
{
_ui->lblUsername->setText(name);
}