Replace Gtk::make_managed() with Gtk::manage()

Maintain compatibility with gtkmm 3.16.
This commit is contained in:
Lawrence Lee
2022-03-05 18:36:28 -08:00
parent 58f0783561
commit 329341f89f
4 changed files with 19 additions and 19 deletions

View File

@@ -1249,7 +1249,7 @@ Gtk::Widget* Preferences::getGeneralPanel()
#endif
#endif
externalEditors = Gtk::make_managed<ExternalEditorPreferences>();
externalEditors = Gtk::manage(new ExternalEditorPreferences());
externalEditors->set_size_request(-1, 200);
#ifdef EXT_EDITORS_RADIOS
externaleditorGrid->attach_next_to(*externalEditors, *edOther, Gtk::POS_BOTTOM, 2, 1);