renamed SharedChannel to ChannelPtr for consistency

This commit is contained in:
fourtf
2018-01-24 13:15:41 +01:00
parent fa344deaf0
commit 2b94c4cd33
17 changed files with 46 additions and 46 deletions
+4 -4
View File
@@ -55,8 +55,8 @@ public:
}
const std::string &getUUID() const;
SharedChannel getChannel() const;
SharedChannel &getChannelRef();
ChannelPtr getChannel() const;
ChannelPtr &getChannelRef();
void setFlexSizeX(double x);
double getFlexSizeX();
void setFlexSizeY(double y);
@@ -83,7 +83,7 @@ protected:
private:
SplitContainer &parentPage;
SharedChannel channel;
ChannelPtr channel;
QVBoxLayout vbox;
SplitHeader header;
@@ -97,7 +97,7 @@ private:
boost::signals2::connection channelIDChangedConnection;
boost::signals2::connection usermodeChangedConnection;
void setChannel(SharedChannel newChannel);
void setChannel(ChannelPtr newChannel);
void doOpenAccountPopupWidget(AccountPopupWidget *widget, QString user);
void channelNameUpdated(const std::string &newChannelName);
void handleModifiers(QEvent *event, Qt::KeyboardModifiers modifiers);