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
+4 -4
View File
@@ -6,7 +6,7 @@
#include <memory>
namespace Ui {
class UserPopup;
class AccountPopup;
}
namespace chatterino {
@@ -15,16 +15,16 @@ class Channel;
namespace widgets {
class UserPopupWidget : public QWidget
class AccountPopupWidget : public QWidget
{
Q_OBJECT
public:
UserPopupWidget(std::shared_ptr<Channel> &&_channel);
AccountPopupWidget(std::shared_ptr<Channel> &&_channel);
void setName(const QString &name);
private:
Ui::UserPopup *_ui;
Ui::AccountPopup *_ui;
std::shared_ptr<Channel> _channel;
};