diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-07-23 00:18:17 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-07-23 00:18:17 +0100 |
| commit | 07d75f41aed77e340d927cc092dc4e7d74d03897 (patch) | |
| tree | 9f22718a221b916916a7d9a824b1e25a7c8a05ab /src | |
| parent | bd763364d9c96928f3bd6bd5fe46ebe1a06e6d0a (diff) | |
Remove debug code.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/closed_captions_dialog.cc | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/wx/closed_captions_dialog.cc b/src/wx/closed_captions_dialog.cc index be520057b..3463ac27a 100644 --- a/src/wx/closed_captions_dialog.cc +++ b/src/wx/closed_captions_dialog.cc @@ -60,11 +60,7 @@ ClosedCaptionsDialog::paint () dc.SetFont (font); for (int i = 0; i < _num_lines; ++i) { - if (_lines[i].IsEmpty()) { - dc.DrawText (wxString::Format("Line %d", i + 1), 8, line_height * i); - } else { - dc.DrawText (_lines[i], 8, line_height * i); - } + dc.DrawText (_lines[i], 8, line_height * i); } } |
