I BROKE EVERYTHING

refactored the rendering process
This commit is contained in:
fourtf
2018-01-11 20:16:25 +01:00
parent c240d6f7c2
commit 10850c0ec7
62 changed files with 2155 additions and 2117 deletions
+3 -3
View File
@@ -23,10 +23,10 @@ class AccountPopupWidget : public BaseWidget
{
Q_OBJECT
public:
AccountPopupWidget(std::shared_ptr<Channel> _channel);
AccountPopupWidget(SharedChannel _channel);
void setName(const QString &name);
void setChannel(std::shared_ptr<Channel> _channel);
void setChannel(SharedChannel _channel);
void updatePermissions();
@@ -47,7 +47,7 @@ private:
enum class permissions { User, Mod, Owner };
permissions permission;
std::shared_ptr<Channel> channel;
SharedChannel channel;
QString userID;
QPixmap avatar;