1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-25 17:17:31 +00:00

Null-initialize MainWindow::Impl::popup_menu_ (GTK client) (#2138)

This commit is contained in:
Mike Gelfand 2021-11-13 15:59:39 +03:00 committed by GitHub
parent 1080a5b3f4
commit 7c3f8b5701
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -99,7 +99,7 @@ private:
Gtk::TreeViewColumn* column_ = nullptr; Gtk::TreeViewColumn* column_ = nullptr;
Glib::RefPtr<Session> const core_; Glib::RefPtr<Session> const core_;
sigc::connection pref_handler_id_; sigc::connection pref_handler_id_;
Gtk::Menu* popup_menu_; Gtk::Menu* popup_menu_ = nullptr;
}; };
/*** /***