Remove erroneous empty gettext translations.
authorCarl Hetherington <cth@carlh.net>
Sat, 20 Oct 2018 20:24:28 +0000 (21:24 +0100)
committerCarl Hetherington <cth@carlh.net>
Sat, 20 Oct 2018 20:24:28 +0000 (21:24 +0100)
src/wx/audio_panel.cc
src/wx/text_panel.cc
src/wx/video_panel.cc

index af2470fa6592b4895c192b3900fda5bb538b3da3..954d1676d4abfc03c2d52e80bbc6636d50e5d947 100644 (file)
@@ -49,7 +49,7 @@ AudioPanel::AudioPanel (ContentPanel* p)
        , _audio_dialog (0)
 {
        _reference = new wxCheckBox (this, wxID_ANY, _("Use this DCP's audio as OV and make VF"));
-       _reference_note = new wxStaticText (this, wxID_ANY, _(""));
+       _reference_note = new wxStaticText (this, wxID_ANY, wxT(""));
        _reference_note->Wrap (200);
        wxFont font = _reference_note->GetFont();
        font.SetStyle(wxFONTSTYLE_ITALIC);
index 9e4bfe6e903e256462b5487ec81c1f7010cf63ed..350dddc0dffe9d5b2d6952673c76735b4a6f7994 100644 (file)
@@ -59,7 +59,7 @@ TextPanel::TextPanel (ContentPanel* p, TextType t)
        }
 
        _reference = new wxCheckBox (this, wxID_ANY, refer);
-       _reference_note = new wxStaticText (this, wxID_ANY, _(""));
+       _reference_note = new wxStaticText (this, wxID_ANY, wxT(""));
        _reference_note->Wrap (200);
        wxFont font = _reference_note->GetFont();
        font.SetStyle(wxFONTSTYLE_ITALIC);
index 2fadfab336ebb8320929472c29f4a3d668fffb8a..2ae4e0fb799bb6f0f3d3ee9861c9961caa0d78b2 100644 (file)
@@ -75,7 +75,7 @@ VideoPanel::VideoPanel (ContentPanel* p)
        : ContentSubPanel (p, _("Video"))
 {
        _reference = new wxCheckBox (this, wxID_ANY, _("Use this DCP's video as OV and make VF"));
-       _reference_note = new wxStaticText (this, wxID_ANY, _(""));
+       _reference_note = new wxStaticText (this, wxID_ANY, wxT(""));
        _reference_note->Wrap (200);
        wxFont font = _reference_note->GetFont();
        font.SetStyle(wxFONTSTYLE_ITALIC);