diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2021-01-07 02:41:49 -0500 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2021-01-07 02:41:49 -0500 |
commit | 8cf95fce0cb233125334482149c2c9f4219da52b (patch) | |
tree | c0c2e267385363e0f87ad4c80d299c08d33a33a9 /components/channels.hpp | |
parent | 2d6c4cd50d0075c064641150dcf65e6b58d5bf36 (diff) | |
download | abaddon-portaudio-8cf95fce0cb233125334482149c2c9f4219da52b.tar.gz abaddon-portaudio-8cf95fce0cb233125334482149c2c9f4219da52b.zip |
improve build process, add github actions
Diffstat (limited to 'components/channels.hpp')
-rw-r--r-- | components/channels.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components/channels.hpp b/components/channels.hpp index f259266..15632ab 100644 --- a/components/channels.hpp +++ b/components/channels.hpp @@ -35,7 +35,7 @@ protected: class ChannelListRowDMChannel : public ChannelListRow { public: - ChannelListRowDMChannel(const Channel *data); + ChannelListRowDMChannel(const ChannelData *data); protected: void OnImageLoad(Glib::RefPtr<Gdk::Pixbuf> buf); @@ -48,7 +48,7 @@ protected: class ChannelListRowGuild : public ChannelListRow { public: - ChannelListRowGuild(const Guild *data); + ChannelListRowGuild(const GuildData *data); int GuildIndex; @@ -79,7 +79,7 @@ public: class ChannelListRowCategory : public ChannelListRow { public: - ChannelListRowCategory(const Channel *data); + ChannelListRowCategory(const ChannelData *data); virtual void Collapse(); virtual void Expand(); @@ -104,7 +104,7 @@ public: class ChannelListRowChannel : public ChannelListRow { public: - ChannelListRowChannel(const Channel *data); + ChannelListRowChannel(const ChannelData *data); protected: Gtk::EventBox *m_ev; |