diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2020-09-09 23:59:40 -0400 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2020-09-09 23:59:40 -0400 |
commit | 6ae9cc915d8bba9415910f4c9745e1158a7e1f68 (patch) | |
tree | 0ebce2462d4358be0f322e05726cf4a2de666293 /components/chatwindow.hpp | |
parent | 51cf8fd2df3cf7a602d05540627a5ad8af6baa58 (diff) | |
download | abaddon-portaudio-6ae9cc915d8bba9415910f4c9745e1158a7e1f68.tar.gz abaddon-portaudio-6ae9cc915d8bba9415910f4c9745e1158a7e1f68.zip |
MessageData -> Message (whoops)
Diffstat (limited to 'components/chatwindow.hpp')
-rw-r--r-- | components/chatwindow.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/chatwindow.hpp b/components/chatwindow.hpp index c16216d..00d5e2b 100644 --- a/components/chatwindow.hpp +++ b/components/chatwindow.hpp @@ -29,8 +29,8 @@ protected: void AddNewHistoryInternal(); void DeleteMessageInternal(); void UpdateMessageContentInternal(); - ChatDisplayType GetMessageDisplayType(const MessageData *data); - void ProcessMessage(const MessageData *data, bool prepend = false); + ChatDisplayType GetMessageDisplayType(const Message *data); + void ProcessMessage(const Message *data, bool prepend = false); int m_num_rows = 0; // youd think thered be a Gtk::ListBox::get_row_count or something but nope std::unordered_map<Snowflake, ChatMessageItem *> m_id_to_widget; |