diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2021-07-05 01:57:55 -0400 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2021-07-05 01:57:55 -0400 |
commit | b01a4406fa5fa3f194db1ebf835cfc198bd71633 (patch) | |
tree | 29e352a3a0b89737b19084be02d2aa8592daf363 /components/chatmessage.hpp | |
parent | cbc65bf766c1241980961bcca999adf69c80dba0 (diff) | |
download | abaddon-portaudio-b01a4406fa5fa3f194db1ebf835cfc198bd71633.tar.gz abaddon-portaudio-b01a4406fa5fa3f194db1ebf835cfc198bd71633.zip |
some more minor tweaking
Diffstat (limited to 'components/chatmessage.hpp')
-rw-r--r-- | components/chatmessage.hpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/components/chatmessage.hpp b/components/chatmessage.hpp index 3868094..f319449 100644 --- a/components/chatmessage.hpp +++ b/components/chatmessage.hpp @@ -58,8 +58,8 @@ protected: void AttachEventHandlers(Gtk::Widget &widget); - Gtk::EventBox *m_ev; - Gtk::Box *m_main; + Gtk::EventBox *_ev; + Gtk::Box m_main; Gtk::Label *m_attrib_label = nullptr; Gtk::TextView *m_text_component = nullptr; @@ -99,16 +99,16 @@ protected: std::vector<Gtk::Widget *> m_content_widgets; - Gtk::Box *m_main_box; - Gtk::Box *m_content_box; - Gtk::EventBox *m_content_box_ev; - Gtk::Box *m_meta_box; - Gtk::EventBox *m_meta_ev; - Gtk::Label *m_author; - Gtk::Label *m_timestamp; + Gtk::Box m_main_box; + Gtk::Box m_content_box; + Gtk::EventBox m_content_box_ev; + Gtk::Box m_meta_box; + Gtk::EventBox m_meta_ev; + Gtk::Label m_author; + Gtk::Label m_timestamp; Gtk::Label *m_extra = nullptr; - Gtk::Image *m_avatar; - Gtk::EventBox *m_avatar_ev; + Gtk::Image m_avatar; + Gtk::EventBox m_avatar_ev; Glib::RefPtr<Gdk::Pixbuf> m_static_avatar; Glib::RefPtr<Gdk::PixbufAnimation> m_anim_avatar; |