X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Fwx%2Ftable_dialog.cc;h=862f7db1a30f310091586398a8796f8fcb8819fa;hp=240a997d2fb7cbae392502d2df92b4973c52e1de;hb=9c1bb2e5ca7c80c4e26b1b2e41159aa171360a94;hpb=cac2b6f2c8dffcb7271d71fc23c0150c2fe4d6ea diff --git a/src/wx/table_dialog.cc b/src/wx/table_dialog.cc index 240a997d2..862f7db1a 100644 --- a/src/wx/table_dialog.cc +++ b/src/wx/table_dialog.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2014 Carl Hetherington + Copyright (C) 2014-2018 Carl Hetherington This file is part of DCP-o-matic. @@ -20,6 +20,7 @@ #include "table_dialog.h" #include "wx_util.h" +#include "static_text.h" TableDialog::TableDialog (wxWindow* parent, wxString title, int columns, int growable, bool cancel) : wxDialog (parent, wxID_ANY, title) @@ -64,7 +65,7 @@ TableDialog::add (wxString text, bool) text += wxT (":"); } #endif - wxStaticText* m = new wxStaticText (this, wxID_ANY, wxT ("")); + wxStaticText* m = new StaticText (this, wxT ("")); m->SetLabelMarkup (text); _table->Add (m, 0, flags, 6); return m;