Remove SharedChannel (just use std::shared_ptr<Channel>)

More code-refactoring BBaper
This commit is contained in:
Rasmus Karlsson
2017-06-11 11:36:42 +02:00
parent 9cd70877a5
commit 1d6f558452
12 changed files with 230 additions and 257 deletions
+1 -1
View File
@@ -7,7 +7,7 @@
namespace chatterino {
namespace widgets {
AccountPopupWidget::AccountPopupWidget(SharedChannel &channel)
AccountPopupWidget::AccountPopupWidget(std::shared_ptr<Channel> &channel)
: QWidget(nullptr)
, _ui(new Ui::AccountPopup)
, _channel(channel)