diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2020-10-30 15:54:28 -0400 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2020-10-30 15:54:28 -0400 |
commit | 2d0c78d4fae6e7a2e596fe9db24a78a0f878bd48 (patch) | |
tree | e3407bf79f2ea763c489c84097982e0a15352e06 /components/chatmessage.hpp | |
parent | 08c8937812e7e5e33fb1c0ff747b66c642d293d8 (diff) | |
download | abaddon-portaudio-2d0c78d4fae6e7a2e596fe9db24a78a0f878bd48.tar.gz abaddon-portaudio-2d0c78d4fae6e7a2e596fe9db24a78a0f878bd48.zip |
fix link/mention/emote parsing cuz dealing with utf8 sucks
Diffstat (limited to 'components/chatmessage.hpp')
-rw-r--r-- | components/chatmessage.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/chatmessage.hpp b/components/chatmessage.hpp index cd07fce..70eeb3d 100644 --- a/components/chatmessage.hpp +++ b/components/chatmessage.hpp @@ -26,7 +26,7 @@ protected: Gtk::Box *CreateAttachmentComponent(const AttachmentData &data); // non-image attachments void HandleImage(const AttachmentData &data, Gtk::Image *img, std::string url); - static Glib::ustring GetTextFiltered(const Glib::RefPtr<Gtk::TextBuffer> &buf); + static Glib::ustring GetText(const Glib::RefPtr<Gtk::TextBuffer> &buf); void HandleUserMentions(Gtk::TextView *tv); void HandleStockEmojis(Gtk::TextView *tv); |