From 5d07756838a29f5fe0ef47045c8cf7bd45574cad Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Sat, 27 Aug 2011 06:29:45 +0000 Subject: [PATCH] Kill FrameMain::HasASSDraw as it's no longer used Originally committed to SVN as r5555. --- aegisub/src/frame_main.cpp | 9 --------- aegisub/src/frame_main.h | 2 -- 2 files changed, 11 deletions(-) diff --git a/aegisub/src/frame_main.cpp b/aegisub/src/frame_main.cpp index 388329918..7e9e7fccf 100644 --- a/aegisub/src/frame_main.cpp +++ b/aegisub/src/frame_main.cpp @@ -574,15 +574,6 @@ bool FrameMain::LoadList(wxArrayString list) { return subs.size() || audio.size() || video.size(); } -bool FrameMain::HasASSDraw() { -#ifdef __WINDOWS__ - wxFileName fn(StandardPaths::DecodePath("?data/ASSDraw3.exe")); - return fn.FileExists(); -#else - return false; -#endif -} - static void autosave_timer_changed(wxTimer *timer, const agi::OptionValue &opt) { int freq = opt.GetInt(); if (freq <= 0) { diff --git a/aegisub/src/frame_main.h b/aegisub/src/frame_main.h index 133099f49..c6e4a011c 100644 --- a/aegisub/src/frame_main.h +++ b/aegisub/src/frame_main.h @@ -141,8 +141,6 @@ public: FrameMain(wxArrayString args); ~FrameMain(); - bool HasASSDraw(); - /// Set the status bar text /// @param text New status bar text /// @param ms Time in milliseconds that the message should be visible