Add FilmViewer::time_until_next_frame.
[dcpomatic.git] / src / wx / make_chain_dialog.cc
index 74d2e24b5ea146a6721c660383004b917e4db3ec..e1ba112cec4e5f28deecbde7302fa83ec96918e5 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2014-2015 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2014-2018 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
@@ -19,6 +19,7 @@
 */
 
 #include "make_chain_dialog.h"
+#include "static_text.h"
 #include <boost/algorithm/string.hpp>
 
 using std::string;
@@ -57,7 +58,7 @@ MakeChainDialog::MakeChainDialog (
 
        {
                wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
-               s->Add (new wxStaticText (this, wxID_ANY, wxT (".")), 0, wxALIGN_CENTER_VERTICAL);
+               s->Add (new StaticText (this, wxT (".")), 0, wxALIGN_CENTER_VERTICAL);
                s->Add (_root_common_name = new wxTextCtrl (
                                this, wxID_ANY, std_to_wx (root_common_name), wxDefaultPosition, wxDefaultSize, 0, validator), 1, wxALIGN_CENTER_VERTICAL
                        );
@@ -68,7 +69,7 @@ MakeChainDialog::MakeChainDialog (
 
        {
                wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
-               s->Add (new wxStaticText (this, wxID_ANY, wxT (".")), 0, wxALIGN_CENTER_VERTICAL);
+               s->Add (new StaticText (this, wxT (".")), 0, wxALIGN_CENTER_VERTICAL);
                s->Add (_intermediate_common_name = new wxTextCtrl (
                                this, wxID_ANY, std_to_wx (intermediate_common_name), wxDefaultPosition, wxDefaultSize, 0, validator), 1, wxALIGN_CENTER_VERTICAL
                        );
@@ -79,7 +80,7 @@ MakeChainDialog::MakeChainDialog (
 
        {
                wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
-               s->Add (new wxStaticText (this, wxID_ANY, wxT ("CS.")), 0, wxALIGN_CENTER_VERTICAL);
+               s->Add (new StaticText (this, wxT ("CS.")), 0, wxALIGN_CENTER_VERTICAL);
                s->Add (_leaf_common_name = new wxTextCtrl (
                                this, wxID_ANY, std_to_wx (leaf_common_name), wxDefaultPosition, wxDefaultSize, 0, validator), 1, wxALIGN_CENTER_VERTICAL
                        );