X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fconfig_move_dialog.cc;h=baf55f18a9a0057c2a1b57f83ce23ed109073c7d;hb=HEAD;hp=ec677f6af50ddc13941e24fe55a2fb39ffcc4aad;hpb=9bf9d637a6fd105418c0af84727ba68823142943;p=dcpomatic.git diff --git a/src/wx/config_move_dialog.cc b/src/wx/config_move_dialog.cc index ec677f6af..c9a0d7eae 100644 --- a/src/wx/config_move_dialog.cc +++ b/src/wx/config_move_dialog.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2017 Carl Hetherington + Copyright (C) 2017-2018 Carl Hetherington This file is part of DCP-o-matic. @@ -18,10 +18,13 @@ */ + #include "config_move_dialog.h" +#include "static_text.h" #include "wx_util.h" #include + ConfigMoveDialog::ConfigMoveDialog (wxWindow* parent, boost::filesystem::path new_file) : QuestionDialog ( parent, @@ -35,7 +38,7 @@ ConfigMoveDialog::ConfigMoveDialog (wxWindow* parent, boost::filesystem::path ne std_to_wx(new_file.string()).data() ); - _sizer->Add (new wxStaticText (this, wxID_ANY, message), 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER); + _sizer->Add (new StaticText (this, message), 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER); layout (); }