Delete FrameMain::LoadVFR as it's not longer used by anything

Originally committed to SVN as r5529.
This commit is contained in:
Thomas Goyne 2011-07-29 23:16:24 +00:00
parent 59755b5bb5
commit 3f50ce6d46
2 changed files with 0 additions and 10 deletions

View File

@ -485,15 +485,6 @@ void FrameMain::OnVideoOpen() {
Thaw();
}
void FrameMain::LoadVFR(wxString filename) {
if (filename.empty()) {
context->videoController->CloseTimecodes();
}
else {
context->videoController->LoadTimecodes(filename);
}
}
void FrameMain::DetachVideo(bool detach) {
if (detach) {
if (!context->detachedVideo) {

View File

@ -85,7 +85,6 @@ public:
void SetDisplayMode(int showVid, int showAudio);
void LoadSubtitles(wxString filename,wxString charset="");
void DetachVideo(bool detach=true);
void LoadVFR(wxString filename);
agi::scoped_ptr<agi::Context> context;