summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-01-16 21:28:37 +0100
committerCarl Hetherington <cth@carlh.net>2024-01-16 21:33:29 +0100
commitc64b6891f6e28c1a7f11871d3dcccdfe75944644 (patch)
tree3ae60c07f3be69b841b789eb932f3160b1d58cbc
parentfc92ea8c60121fd33adbf7aef2b0596191fb92e6 (diff)
Cleanup: remove some make_wx<> that aren't needed.
-rw-r--r--src/wx/content_menu.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/wx/content_menu.cc b/src/wx/content_menu.cc
index b096ecae6..78b6469a0 100644
--- a/src/wx/content_menu.cc
+++ b/src/wx/content_menu.cc
@@ -365,13 +365,13 @@ ContentMenu::find_missing ()
boost::filesystem::path path;
if ((ic && !ic->still ()) || dc) {
- auto d = make_wx<wxDirDialog>(nullptr, _("Choose a folder"), wxT (""), wxDD_DIR_MUST_EXIST);
- r = d->ShowModal ();
- path = wx_to_std (d->GetPath());
+ wxDirDialog dialog(nullptr, _("Choose a folder"), wxT(""), wxDD_DIR_MUST_EXIST);
+ r = dialog.ShowModal();
+ path = wx_to_std(dialog.GetPath());
} else {
- auto d = make_wx<wxFileDialog>(nullptr, _("Choose a file"), wxT (""), wxT (""), wxT ("*.*"));
- r = d->ShowModal ();
- path = wx_to_std (d->GetPath());
+ wxFileDialog dialog(nullptr, _("Choose a file"), wxT(""), wxT(""), wxT("*.*"));
+ r = dialog.ShowModal();
+ path = wx_to_std(dialog.GetPath());
}
if (r == wxID_CANCEL) {