diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-03-19 10:36:38 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-03-19 10:36:38 +0100 |
| commit | 6485b4cb7afb020a8a4e8ff1a5b36544d25595a8 (patch) | |
| tree | 8a82292684ca6c052877c98e482b66598f3d9d91 | |
| parent | 7cd939aa3d0b87858c74e5832d1aa812b2271459 (diff) | |
Missing std_to_wx().
| -rw-r--r-- | src/wx/job_view.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/job_view.cc b/src/wx/job_view.cc index 2754948ae..231176e4f 100644 --- a/src/wx/job_view.cc +++ b/src/wx/job_view.cc @@ -151,7 +151,7 @@ JobView::finished () } if (_job->message()) { - MessageDialog* d = new MessageDialog (_parent, _job->name(), _job->message().get()); + auto d = new MessageDialog (_parent, std_to_wx(_job->name()), std_to_wx(_job->message().get())); d->ShowModal (); d->Destroy (); } |
